28 lines
685 B
YAML
28 lines
685 B
YAML
version: "3.2"
|
|
|
|
services:
|
|
sogebot:
|
|
image: sogebot/release: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
|
|
|