alicante-infra/roles/core/templates/apps-business-compose.j2

39 lines
940 B
Django/Jinja

services:
dolibarr:
image: upshift/dolibarr:latest
environment:
DOLI_DB_HOST: postgres-core
DOLI_DB_PASSWORD: {{ global_db_root_pass }}
DOLI_ADMIN_LOGIN: admin
DOLI_DB_TYPE: pgsql
networks:
- alicante_net
ports:
- "8080:80"
teable:
image: teableio/teable:latest
environment:
PRISMA_DATABASE_URL: "postgresql://postgres:{{ global_db_root_pass }}@postgres-core:5432/teable"
REDIS_URL: "redis://:{{ global_redis_pass }}@redis-core:6379/0"
networks:
- alicante_net
ports:
- "3000:3000"
activepieces:
image: activepieces/activepieces:latest
environment:
AP_POSTGRES_HOST: postgres-core
AP_POSTGRES_PASSWORD: {{ global_db_root_pass }}
AP_REDIS_HOST: redis-core
AP_REDIS_PASSWORD: {{ global_redis_pass }}
networks:
- alicante_net
ports:
- "8081:80"
networks:
alicante_net:
external: true