proxy/docker-compose.yml
2026-01-20 20:10:24 +00:00

36 lines
1.1 KiB
YAML

name: esuite
services:
nginx-Local:
container_name: proxy
restart: unless-stopped
image: nginx
ports:
- 3001:80
volumes:
- ./nginx.conf:/etc/nginx/templates/nginx.conf.conf
environment:
NGINX_ENVSUBST_OUTPUT_DIR: "/etc/nginx"
NGINX_ENVSUBST_TEMPLATE_SUFFIX: ".conf"
API_URL: "https://host.docker.internal:7066"
WEBUI_URL: "http://host.docker.internal:3000"
SERVER_NAME: localhost
# nginx-container:
# container_name: proxy
# restart: unless-stopped
# image: esuite.azurecr.io/e-suite.proxy:2025.6.5.6-develop
# ports:
# - 3001:80
# environment:
# API_URL: "https://host.docker.internal:7066"
# WEBUI_URL: "http://host.docker.internal:3000"
# SERVER_NAME: localhost
RabbitMq:
container_name: rabbitmq
restart: unless-stopped
image: rabbitmq
ports:
- 8080:15672
- 5672:5672