Files
land-vue/docker-compose.yml
snusxd 4c7b17a65e
All checks were successful
Deploy to snusxd.site / docker-build (push) Successful in 2m25s
ci/cd: update backend subproject to dirty state and adjust docker-compose configuration
2026-04-14 22:21:10 +03:00

25 lines
511 B
YAML

services:
mva-backend:
image: mva-backend:latest
container_name: mva-backend
restart: unless-stopped
ports:
- 6767:3000
volumes:
- covers_data:/app/public/covers
build:
context: ./backend
mva-frontend:
image: mva-frontend:latest
container_name: mva-frontend
ports:
- 1488:80
build:
context: ./frontend
args:
- VITE_BACKEND_DOMAIN=${VITE_BACKEND_DOMAIN}
- VITE_LASTFM_API=${VITE_LASTFM_API}
volumes:
covers_data: