Files
aranroig.com/docker-compose.yml
Aran Roig e524acefd0
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 13s
Maybe
2026-03-21 11:32:57 +01:00

21 lines
405 B
YAML

version: "3.9"
services:
nginx:
image: nginx:latest
ports:
- "3000:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- frontend
- backend
restart: always
frontend:
image: git.aranroig.com/syndria98/aranroig-frontend:latest
restart: always
backend:
image: git.aranroig.com/syndria98/aranroig-backend:latest
restart: always