Main Upload

This commit is contained in:
minster586
2024-02-06 21:32:38 -05:00
parent d3762c1f4d
commit 9ec722f279
16 changed files with 923 additions and 228 deletions

View File

@@ -0,0 +1,27 @@
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