Official Dokploy docs specify ${{project.VAR}} (single $), not $${{project.VAR}}.
Double $$ is Docker Compose escape syntax preventing Dokploy substitution.
Caused missing SHARED_PROJECT_ID/SHARED_ENVIRONMENT_ID in portal container.
Ref: https://docs.dokploy.com/docs/core/variables
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
ai-stack-deployer:
|
|
image: git.app.flexinit.nl/oussamadouhou/ai-stack-deployer:staging
|
|
container_name: ai-stack-deployer-staging
|
|
environment:
|
|
- NODE_ENV=staging
|
|
- PORT=3000
|
|
- HOST=0.0.0.0
|
|
- DOKPLOY_URL=${DOKPLOY_URL}
|
|
- DOKPLOY_API_TOKEN=${DOKPLOY_API_TOKEN}
|
|
- STACK_DOMAIN_SUFFIX=${STACK_DOMAIN_SUFFIX:-ai.flexinit.nl}
|
|
- STACK_IMAGE=${STACK_IMAGE:-git.app.flexinit.nl/flexinit/agent-stack:latest}
|
|
- RESERVED_NAMES=${RESERVED_NAMES:-admin,api,www,root,system,test,demo,portal}
|
|
- SHARED_PROJECT_ID=${{project.SHARED_PROJECT_ID}}
|
|
- SHARED_ENVIRONMENT_ID=${{project.SHARED_ENVIRONMENT_ID}}
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test:
|
|
[
|
|
"CMD",
|
|
"bun",
|
|
"--eval",
|
|
"fetch('http://localhost:3000/health').then(r => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))",
|
|
]
|
|
interval: 30s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 5s
|
|
networks:
|
|
- ai-stack-network
|
|
|
|
networks:
|
|
ai-stack-network:
|
|
driver: bridge
|