15 lines
221 B
YAML
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
|