updated songdb & docker compose

This commit is contained in:
2025-04-14 23:04:59 -03:00
parent bcc99cb6b2
commit 4c31690290
3 changed files with 5519 additions and 4383 deletions

File diff suppressed because it is too large Load Diff

12
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
frontend:
container_name: frontend
build: ./frontend
ports:
- "8083:80"
depends_on:
- backend
backend:
container_name: backend
build: ./backend

View File

@@ -1,7 +1,7 @@
services:
frontend:
container_name: frontend
build: ./frontend
image: ghcr.io/ovosimpatico/songquiz-frontend:latest
ports:
- "8083:80"
depends_on:
@@ -9,4 +9,6 @@ services:
backend:
container_name: backend
build: ./backend
image: ghcr.io/ovosimpatico/songquiz-backend:latest
ports:
- "8082:80"