nginx and other stuff

This commit is contained in:
2024-06-27 20:50:58 +02:00
commit 3c831d5985
19 changed files with 1886 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
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