docker ports removed

This commit is contained in:
Oussama Douhou
2026-01-13 13:32:46 +01:00
parent 254b7710d7
commit c2c188f09f
4 changed files with 2 additions and 12 deletions

View File

@@ -1,11 +1,7 @@
version: "3.8"
services: services:
ai-stack-deployer: ai-stack-deployer:
image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:dev image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:dev
container_name: ai-stack-deployer-dev container_name: ai-stack-deployer-dev
ports:
- "3000:3000"
environment: environment:
- NODE_ENV=development - NODE_ENV=development
- PORT=3000 - PORT=3000
@@ -15,8 +11,8 @@ services:
- STACK_DOMAIN_SUFFIX=${STACK_DOMAIN_SUFFIX:-ai.flexinit.nl} - STACK_DOMAIN_SUFFIX=${STACK_DOMAIN_SUFFIX:-ai.flexinit.nl}
- STACK_IMAGE=${STACK_IMAGE:-git.app.flexinit.nl/flexinit/agent-stack:latest} - STACK_IMAGE=${STACK_IMAGE:-git.app.flexinit.nl/flexinit/agent-stack:latest}
- RESERVED_NAMES=${RESERVED_NAMES:-admin,api,www,root,system,test,demo,portal} - RESERVED_NAMES=${RESERVED_NAMES:-admin,api,www,root,system,test,demo,portal}
- SHARED_PROJECT_ID=$${{project.SHARED_PROJECT_ID}} - SHARED_PROJECT_ID=${{project.SHARED_PROJECT_ID}}
- SHARED_ENVIRONMENT_ID=$${{project.SHARED_ENVIRONMENT_ID}} - SHARED_ENVIRONMENT_ID=${{project.SHARED_ENVIRONMENT_ID}}
env_file: env_file:
- .env - .env
restart: unless-stopped restart: unless-stopped

View File

@@ -6,8 +6,6 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: ai-stack-deployer-local container_name: ai-stack-deployer-local
ports:
- "3000:3000"
environment: environment:
- NODE_ENV=development - NODE_ENV=development
- PORT=3000 - PORT=3000

View File

@@ -4,8 +4,6 @@ services:
ai-stack-deployer: ai-stack-deployer:
image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:latest image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:latest
container_name: ai-stack-deployer container_name: ai-stack-deployer
ports:
- "3000:3000"
environment: environment:
- NODE_ENV=production - NODE_ENV=production
- PORT=3000 - PORT=3000

View File

@@ -4,8 +4,6 @@ services:
ai-stack-deployer: ai-stack-deployer:
image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:staging image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:staging
container_name: ai-stack-deployer-staging container_name: ai-stack-deployer-staging
ports:
- "3000:3000"
environment: environment:
- NODE_ENV=staging - NODE_ENV=staging
- PORT=3000 - PORT=3000