All checks were successful
Build and Push Docker Image / build (push) Successful in 1m37s
29 lines
530 B
YAML
29 lines
530 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
frontend:
|
|
image: registry.prod.resk-u.ch/clerc-fronted:latest
|
|
ports:
|
|
- "3000:3000"
|
|
|
|
backend:
|
|
image: registry.prod.resk-u.ch/reskreen:latest
|
|
ports:
|
|
- "8081:8080"
|
|
volumes:
|
|
- reskreen-data:/app/config
|
|
|
|
backend-cron:
|
|
image: registry.prod.resk-u.ch/reskreen:latest
|
|
command: crond -f
|
|
volumes:
|
|
- reskreen-data:/app/config
|
|
|
|
volumes:
|
|
reskreen-data:
|
|
driver: local
|
|
driver_opts:
|
|
type: none
|
|
device: /home/prod/Reskreen
|
|
o: bind
|