docker-compose.yml: add networks
Some checks failed
Build & Deploy Web & Bot / Build and Push to Docker Hub (push) Has been cancelled
Build & Deploy Web & Bot / Deploy to VPS (push) Has been cancelled

This commit is contained in:
vchikalkin 2025-07-02 21:25:48 +03:00
parent ae63e4cb3b
commit 62af72d45f

View File

@ -9,6 +9,9 @@ services:
restart: always
ports:
- 3000:3000
networks:
- app
- web
bot:
image: vchikalkin/zapishis-bot:latest
env_file:
@ -17,3 +20,11 @@ services:
context: .
dockerfile: ./apps/bot/Dockerfile
restart: always
networks:
- app
networks:
app:
external: true
web:
external: true