🦈🏠🐜 Initial Commit 🐜🦈🏠

This commit is contained in:
Jason
2022-07-10 10:05:19 -04:00
commit 908654bcd0
5 changed files with 267 additions and 0 deletions

47
README.md Normal file
View File

@@ -0,0 +1,47 @@
# 👋 deno Readme 👋
## Run container
```shell
dockermgr install deno
```
### via command line
```shell
docker run -d \
--restart always \
--name deno \
--hostname casjaysdev-deno \
-e TZ=${TIMEZONE:-America/New_York} \
-v $PWD/deno/data:/data \
-v $PWD/deno/config:/config \
-p 80:80 \
casjaysdev/deno:latest
```
### via docker-compose
```yaml
version: "2"
services:
deno:
image: casjaysdev/deno
container_name: deno
environment:
- TZ=America/New_York
- HOSTNAME=casjaysdev-deno
volumes:
- $HOME/.local/share/docker/storage/deno/data:/data
- $HOME/.local/share/docker/storage/deno/config:/config
ports:
- 80:80
restart: always
```
## Authors
🤖 Jason Hempstead: [Github](https://github.com/Jason Hempstead) [Docker](https://hub.docker.com/Jason Hempstead) 🤖
⛵ CasjaysDev: [Github](https://github.com/casjaysdev) [Docker](https://hub.docker.com/casjaysdev) ⛵