feat: enable remote server deployment for OSS deployment (#57)

This commit is contained in:
Sabiha Khan 2025-11-20 21:33:05 +05:30 committed by GitHub
parent ecceeef4d3
commit 6efe7d6bd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 305 additions and 4 deletions

View file

@ -59,6 +59,21 @@ services:
networks:
- app-network
nginx:
image: nginx:alpine
container_name: nginx_https
profiles: ["remote"]
depends_on:
- ui
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./certs:/etc/nginx/certs:ro
networks:
- app-network
api:
image: ${REGISTRY:-dograhai}/dograh-api:latest
volumes: