mscc-react/docker-compose.yml
Kishan Takoordyal aaed62f399
All checks were successful
Run tests, build docker images and deploy / Docker build and push (push) Successful in 9m46s
Run tests, build docker images and deploy / Deploy on server (push) Successful in 24s
Update docker-compose.yml
2025-08-12 17:03:07 +00:00

17 lines
756 B
YAML

services:
mscc-react-app:
container_name: 'mscc-react-app'
image: 'gitea.konnect.dev/shared/mscc-react:latest'
network_mode: 'bridge'
restart: 'always'
environment: {}
volumes: []
labels:
traefik.enable: 'true'
traefik.http.routers.mscc-react-app-service-http.entrypoints: 'http'
traefik.http.routers.mscc-react-app-service-https.entrypoints: 'https'
traefik.http.routers.mscc-react-app-service-http.rule: 'Host(`mscc.kinesis.world`)'
traefik.http.routers.mscc-react-app-service-https.rule: 'Host(`mscc.kinesis.world`)'
traefik.http.routers.mscc-react-app-service-https.tls.certResolver: 'acme-http'
traefik.http.services.mscc-react-app-service-https.loadbalancer.server.port: '3000'