2026-04-04 15:09:49 +02:00
|
|
|
# Development overrides: exposes ports for direct access
|
|
|
|
|
# Usage: docker compose -f docker-compose.yml -f docker-compose.dev.yml up
|
|
|
|
|
services:
|
|
|
|
|
postgres:
|
|
|
|
|
ports:
|
|
|
|
|
- "5432:5432"
|
|
|
|
|
|
|
|
|
|
logto:
|
|
|
|
|
ports:
|
|
|
|
|
- "3001:3001"
|
|
|
|
|
|
|
|
|
|
cameleer-saas:
|
|
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
2026-04-07 12:20:40 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./ui/dist:/app/static
|
2026-04-04 15:09:49 +02:00
|
|
|
environment:
|
|
|
|
|
SPRING_PROFILES_ACTIVE: dev
|
2026-04-07 12:20:40 +02:00
|
|
|
SPRING_WEB_RESOURCES_STATIC_LOCATIONS: file:/app/static/,classpath:/static/
|
2026-04-04 15:09:49 +02:00
|
|
|
|
2026-04-05 02:50:51 +02:00
|
|
|
cameleer3-server:
|
|
|
|
|
ports:
|
|
|
|
|
- "8081:8081"
|
2026-04-08 22:37:51 +02:00
|
|
|
volumes:
|
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
|
- jardata:/data/jars
|
|
|
|
|
group_add:
|
|
|
|
|
- "0"
|
|
|
|
|
environment:
|
|
|
|
|
CAMELEER_RUNTIME_ENABLED: "true"
|
|
|
|
|
CAMELEER_JAR_STORAGE_PATH: /data/jars
|
|
|
|
|
CAMELEER_RUNTIME_BASE_IMAGE: gitea.siegeln.net/cameleer/cameleer-runtime-base:latest
|
|
|
|
|
CAMELEER_DOCKER_NETWORK: cameleer-saas_cameleer
|
|
|
|
|
CAMELEER_SERVER_URL: http://cameleer3-server:8081
|
|
|
|
|
CAMELEER_ROUTING_DOMAIN: ${PUBLIC_HOST:-localhost}
|
|
|
|
|
CAMELEER_ROUTING_MODE: path
|
|
|
|
|
CAMELEER_JAR_DOCKER_VOLUME: cameleer-saas_jardata
|
2026-04-05 02:50:51 +02:00
|
|
|
|
2026-04-05 16:23:48 +02:00
|
|
|
cameleer3-server-ui:
|
|
|
|
|
ports:
|
|
|
|
|
- "8082:80"
|
|
|
|
|
|
2026-04-04 15:09:49 +02:00
|
|
|
clickhouse:
|
|
|
|
|
ports:
|
|
|
|
|
- "8123:8123"
|
2026-04-08 22:37:51 +02:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
jardata:
|