Merge pull request #7050 from ShadowArcanist/patch-11
fix(service): activepieces database failing to start (Closes #7027)
This commit is contained in:
commit
4252ae2a89
1 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
services:
|
services:
|
||||||
activepieces:
|
activepieces:
|
||||||
image: "ghcr.io/activepieces/activepieces:latest"
|
image: "ghcr.io/activepieces/activepieces:0.21.0" # Released on March 13 2024
|
||||||
environment:
|
environment:
|
||||||
- SERVICE_URL_ACTIVEPIECES
|
- SERVICE_URL_ACTIVEPIECES
|
||||||
- AP_API_KEY=$SERVICE_PASSWORD_64_APIKEY
|
- AP_API_KEY=$SERVICE_PASSWORD_64_APIKEY
|
||||||
|
|
@ -40,7 +40,7 @@ services:
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
postgres:
|
postgres:
|
||||||
image: "postgres:latest"
|
image: 'postgres:14.4'
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_DB=${POSTGRES_DB:-activepieces}
|
- POSTGRES_DB=${POSTGRES_DB:-activepieces}
|
||||||
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
|
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
|
||||||
|
|
@ -54,7 +54,7 @@ services:
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
redis:
|
redis:
|
||||||
image: "redis:latest"
|
image: 'redis:7.0.7'
|
||||||
volumes:
|
volumes:
|
||||||
- "redis_data:/data"
|
- "redis_data:/data"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue