Files
proxyserver/bytestash/compose.yml
2024-11-26 10:49:15 -06:00

25 lines
599 B
YAML

services:
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: "true"
DEBUG: "true"
DISABLE_ACCOUNTS: "true"
DISABLE_INTERNAL_ACCOUNTS: "false"
networks:
reverse-proxy:
name: reverse-proxy
external: true