tgbot-chatgpt/docker-compose.yml

16 lines
472 B
YAML
Raw Permalink Normal View History

2024-08-25 17:54:23 +05:00
services:
tgbot-chatgpt:
container_name: tgbot-chatgpt-${APP_INSTANCE}
build:
context: .
env_file:
- /data/secrets/${SERVER_DOMAIN}/tgbot-chatgpt/${APP_INSTANCE}/app.env
volumes:
- .:/app:rw
- app_node_modules:/app/node_modules
- /data/secrets/${SERVER_DOMAIN}/tgbot-chatgpt/${APP_INSTANCE}/allowed.list:/app/allowed.list:ro
command: npm run start
2024-10-15 01:46:09 +05:00
restart: unless-stopped
2024-08-25 17:54:23 +05:00
volumes:
node_modules:
app_node_modules: