Files
Reskreen/docker-compose.yml
Brocas Mathieu 3c26d719df
All checks were successful
Build and Push Docker Image / build (push) Successful in 4m21s
add network info
2025-01-22 11:48:07 +00:00

43 lines
884 B
YAML

version: '3.8'
services:
frontend:
image: gitea.prod.resk-u.ch/clerc/clerc-frontend:latest
networks:
- main-swarm-network
ports:
- "3000:3000"
volumes:
- /home/prod/reskreen-frontend/.env:/app/frontend-app/.env
labels:
- shepherd.enable=true
backend:
image: gitea.prod.resk-u.ch/clerc/reskreen:latest
networks:
- main-swarm-network
ports:
- "8081:8080"
volumes:
- reskreen-data:/app/config
labels:
- shepherd.enable=true
backend-cron:
image: gitea.prod.resk-u.ch/clerc/reskreen:latest
command: /app/start_crond.sh
volumes:
- reskreen-data:/app/config
labels:
- shepherd.enable=true
volumes:
reskreen-data:
driver: local
driver_opts:
type: none
device: /home/prod/Reskreen
o: bind
networks:
main-swarm-network:
external: true