zapishis-client/docker-compose.yml
vchikalkin ecc7b44d6d
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
fix build web with docker compose
2025-07-02 17:46:33 +03:00

20 lines
331 B
YAML

services:
web:
container_name: web
env_file:
- .env
build:
context: .
dockerfile: ./apps/web/Dockerfile
restart: always
ports:
- 3000:3000
bot:
container_name: bot
env_file:
- .env
build:
context: .
dockerfile: ./apps/bot/Dockerfile
restart: always