This commit is contained in:
Stavros 2023-11-11 20:21:42 +02:00
parent 543b569fb0
commit 9453dbd7a0

View File

@ -43,14 +43,14 @@ services:
traefik.http.routers.activepieces-local.tls: true traefik.http.routers.activepieces-local.tls: true
activepieces-postgres: activepieces-postgres:
image: postgres:activepieces-postgres image: postgres:14
restart: unless-stopped restart: unless-stopped
environment: environment:
- POSTGRES_DB=activepieces - POSTGRES_DB=activepieces
- POSTGRES_PASSWORD=${AP_POSTGRES_PASSWORD} - POSTGRES_PASSWORD=${AP_POSTGRES_PASSWORD}
- POSTGRES_USER=tipi - POSTGRES_USER=tipi
volumes: volumes:
- "${APP_DATA}/data/postgres:/var/lib/postgresql/data" - "${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data"
networks: networks:
- tipi_main_network - tipi_main_network
@ -59,6 +59,6 @@ services:
container_name: activepieces-redis container_name: activepieces-redis
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- "${APP_DATA}/data/redis/:/data" - "${APP_DATA_DIR}/data/redis/:/data"
networks: networks:
- tipi_main_network - tipi_main_network