Update archived folder name
This commit is contained in:
14
.archived/bytestash/.env
Normal file
14
.archived/bytestash/.env
Normal file
@@ -0,0 +1,14 @@
|
||||
# Environment Variables
|
||||
JWT_SECRET=
|
||||
TOKEN_EXPIRY=
|
||||
ALLOW_NEW_ACCOUNTS=
|
||||
DEBUG=
|
||||
DISABLE_ACCOUNTS=
|
||||
DISABLE_INTERNAL_ACCOUNTS=
|
||||
OIDC_ENABLED=
|
||||
|
||||
# Paths
|
||||
APPDATA_PATH=/home/username/appdata
|
||||
|
||||
# Ports
|
||||
PORT=
|
17
.archived/bytestash/docker-compose.yml
Normal file
17
.archived/bytestash/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
bytestash:
|
||||
image: ghcr.io/jordan-dalby/bytestash:1.5.8
|
||||
container_name: bytestash
|
||||
environment:
|
||||
- JWT_SECRET=${JWT_SECRET}
|
||||
- TOKEN_EXPIRY=${TOKEN_EXPIRY}
|
||||
- ALLOW_NEW_ACCOUNTS=${ALLOW_NEW_ACCOUNTS}
|
||||
- DEBUG=${DEBUG}
|
||||
- DISABLE_ACCOUNTS=${DISABLE_ACCOUNTS}
|
||||
- DISABLE_INTERNAL_ACCOUNTS=${DISABLE_INTERNAL_ACCOUNTS}
|
||||
- OIDC_ENABLED=${OIDC_ENABLED}
|
||||
volumes:
|
||||
- ${APPDATA_PATH}/bytestash/config:/data/snippets
|
||||
ports:
|
||||
- "${PORT}:5000"
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user