26 lines
630 B
YAML
26 lines
630 B
YAML
services:
|
|
bytestash:
|
|
container_name: bytestash
|
|
image: "ghcr.io/jordan-dalby/bytestash:latest"
|
|
restart: always
|
|
volumes:
|
|
- ./snippets:/data/snippets
|
|
networks:
|
|
- reverse-proxy
|
|
ports:
|
|
- "5252:5000"
|
|
environment:
|
|
# See https://github.com/jordan-dalby/ByteStash/wiki/FAQ#environment-variables
|
|
BASE_PATH: ""
|
|
JWT_SECRET: ea1ohs0OhShaeBuem7munouy0faSee
|
|
TOKEN_EXPIRY: 24h
|
|
ALLOW_NEW_ACCOUNTS: "false"
|
|
DEBUG: "false"
|
|
DISABLE_ACCOUNTS: "true"
|
|
DISABLE_INTERNAL_ACCOUNTS: "true"
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
name: reverse-proxy
|
|
external: true
|