diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..12abdf1 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,22 @@ +services: + bot: + build: + context: ./client + dockerfile: ./Dockerfile + environment: + - TZ=Europe/Moscow + - NODE_ENV=development + - TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN} + networks: + - one_ton_daily_bot_network + #volumes: + # - ../../client/src:/app/src + # - ../../db:/app/db + restart: unless-stopped + +networks: + one_ton_daily_bot_network: + +volumes: + db: + external: true