Files
docker-compose-files/sogebot/bot/nightley/docker-compose.yml
minster586 9ec722f279 Main Upload
2024-02-06 21:32:38 -05:00

28 lines
685 B
YAML

version: "3.2"
services:
sogebot:
image: sogebot/nightly:latest
restart: always
volumes:
- ./shared:/app/shared/
- ./logs:/app/logs/
ports:
- 20000:20000 # change your output port
#- 9229:9229 # uncomment to use --inspect port
env_file:
- ./conf/.env
environment:
# ensure locale exists in container, you may need to install it
LANG: en_US.UTF-8
#NODE_OPTIONS: --max_old_space_size=4096 # uncomment to set max 4GB RAM usage (default 2GB)
#PROFILER: y # uncomment to enable --inspect
## Uncomment to install adminer
#adminer:
# image: adminer
# restart: always
# ports:
# - 20002:8080