diff --git a/docker-stack/docker-compose.yml b/docker-stack/docker-compose.yml index 65221ec..d12eb16 100644 --- a/docker-stack/docker-compose.yml +++ b/docker-stack/docker-compose.yml @@ -5,11 +5,11 @@ services: human-reply-server: image: ${REGISTRY_URL}tobiichi-gpt:latest build: - context: ${GIT_REPO_URL}#${GIT_BRANCH:-main} + context: https://git.karylab.com/ChenKaiLiuG/tobiichiGPT.git#${GIT_BRANCH:-main} dockerfile: human-gpt/Dockerfile container_name: tobiichi-gpt ports: - - "8000:8000" + - "11000:8000" restart: unless-stopped environment: - TZ=Asia/Taipei @@ -21,7 +21,7 @@ services: image: ghcr.io/open-webui/open-webui:main container_name: open-webui ports: - - "3000:8080" + - "10000:8080" volumes: - open-webui-data:/app/backend/data environment: @@ -36,9 +36,9 @@ services: image: jc21/nginx-proxy-manager:latest container_name: nginx-proxy-manager ports: - - "8080:80" # HTTP (避免與現有 NPM 衝突) - - "8443:443" # HTTPS (避免與現有 NPM 衝突) - - "82:81" # NPM 管理介面 (避免與現有 NPM 衝突) + - "10080:80" # HTTP (避免與現有 NPM 衝突) + - "10443:443" # HTTPS (避免與現有 NPM 衝突) + - "10081:81" # NPM 管理介面 (避免與現有 NPM 衝突) volumes: - npm-data:/data - npm-letsencrypt:/etc/letsencrypt