All checks were successful
Build and Deploy Nuxt / build (push) Successful in 12s
19 lines
346 B
YAML
19 lines
346 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
|
|
|
|
frontend:
|
|
image: git.aranroig.com/syndria98/aranroig-frontend:latest
|
|
|
|
backend:
|
|
image: git.aranroig.com/syndria98/aranroig-backend:latest
|