10 lines
177 B
YAML
10 lines
177 B
YAML
services:
|
|
backend:
|
|
build: ./backend
|
|
nginx:
|
|
image: nginx:latest
|
|
ports:
|
|
- '8000:80'
|
|
volumes:
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
|