write-ups-challenges-2024-2025/bob-the-assistant/docker-compose.yaml
2024-11-25 22:28:00 +01:00

15 lines
221 B
YAML

services:
nginx:
build: ./nginx
ports:
- 80:80
bob-backend:
env_file: .env
build: ./backend
network_mode: service:nginx
bob-frontend:
build: ./bobchat
network_mode: service:nginx