Fixed activepieces one click service failing to start
Updated Docker images for activepieces, postgres, and redis to specific versions.
This commit is contained in:
parent
5ed0b44bd0
commit
32cd8df4e4
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