zapishis-client/docker-compose.yml
vchikalkin 62af72d45f
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
docker-compose.yml: add networks
2025-07-02 21:25:48 +03:00

31 lines
494 B
YAML

services:
web:
image: vchikalkin/zapishis-web:latest
env_file:
- .env
build:
context: .
dockerfile: ./apps/web/Dockerfile
restart: always
ports:
- 3000:3000
networks:
- app
- web
bot:
image: vchikalkin/zapishis-bot:latest
env_file:
- .env
build:
context: .
dockerfile: ./apps/bot/Dockerfile
restart: always
networks:
- app
networks:
app:
external: true
web:
external: true