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"
|
|
|
|
|
- "3002:3002"
|
|
|
|
|
|
|
|
|
|
cameleer-saas:
|
|
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
2026-04-05 13:11:44 +02:00
|
|
|
volumes:
|
|
|
|
|
- ./ui/dist:/app/static
|
2026-04-05 15:32:53 +02:00
|
|
|
- ./target/cameleer-saas-0.1.0-SNAPSHOT.jar:/app/app.jar
|
2026-04-04 15:09:49 +02:00
|
|
|
environment:
|
|
|
|
|
SPRING_PROFILES_ACTIVE: dev
|
2026-04-05 13:11:44 +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-04 15:09:49 +02:00
|
|
|
clickhouse:
|
|
|
|
|
ports:
|
|
|
|
|
- "8123:8123"
|