🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-21 01:47:54 -04:00
parent c0d72f456f
commit 702b8b2edd
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F
2 changed files with 5 additions and 5 deletions

View File

@ -15,10 +15,10 @@ docker run -d \
--restart always \
--name deno \
--hostname casjaysdev-deno \
--publish-all \
-e TZ=${TIMEZONE:-America/New_York} \
-v $PWD/deno/data:/data \
-v $PWD/deno/config:/config \
-p 80:80 \
casjaysdev/deno:latest
```
@ -37,11 +37,11 @@ services:
- $HOME/.local/share/docker/storage/deno/data:/data
- $HOME/.local/share/docker/storage/deno/config:/config
ports:
- 80:80
- 1-65535
restart: always
```
## Authors
🤖 Jason Hempstead: [Github](https://github.com/Jason Hempstead) [Docker](https://hub.docker.com/Jason Hempstead) 🤖
🤖 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) ⛵

View File

@ -21,14 +21,14 @@ DENO_VERSION="${DENO_VERSION:-v1.26.1}"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if [ "$(uname -m)" = "amd64" ] || [ "$(uname -m)" = "x86_64" ]; then
ARCH="x86_64"
CHANNEL="denoland"
CHANNEL="github.com/denoland/deno"
URL="https://github.com/denoland/deno/releases/download/$DENO_VERSION/deno-$ARCH-unknown-linux-gnu.zip"
BIN_FILE="/usr/bin/deno"
TMP_DIR="/tmp/deno-$ARCH"
TMP_FILE="/tmp/deno-$ARCH.zip"
elif [ "$(uname -m)" = "arm64" ] || [ "$(uname -m)" = "aarch64" ]; then
ARCH="arm64"
CHANNEL="LukeChannings"
CHANNEL="github.com/LukeChannings/deno-arm64"
URL="https://github.com/LukeChannings/deno-arm64/releases/download/$DENO_VERSION/deno-linux-$ARCH.zip"
BIN_FILE="/usr/bin/deno"
TMP_DIR="/tmp/deno-$ARCH"