18 lines
396 B
YAML
18 lines
396 B
YAML
version: "3.8"
|
|
services:
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- "3000:3000"
|
|
frontend:
|
|
build: ./qr-front
|
|
ports:
|
|
- "8080:8080"
|
|
nginx:
|
|
image: nginx:latest
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
|
|
- ./frontend/dist:/usr/share/nginx/html
|