qubed/compose.yaml
2024-10-08 12:13:10 +01:00

20 lines
329 B
YAML

services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
- ./backend:/app
web:
image: nginx
ports:
- "8123:80"
environment:
- NGINX_HOST=localhost
- NGINX_PORT=80
volumes:
- ./webapp:/usr/share/nginx/html