fix: changed to pre-built proxy image

This commit is contained in:
naterfute
2025-04-02 22:56:07 -07:00
parent d19aa4cd2f
commit 431785eb86
2 changed files with 38 additions and 28 deletions

View File

@@ -53,7 +53,7 @@ services:
web: web:
image: makeplane/plane-space:v0.25.3 image: makeplane/plane-space:${APP_RELEASE:-v0.25.3}
restart: unless-stopped restart: unless-stopped
networks: networks:
- dev_env - dev_env
@@ -66,7 +66,7 @@ services:
- .env - .env
space: space:
image: makeplane/plane-space:v0.25.3 image: makeplane/plane-space:${APP_RELEASE:-v0.25.3}
restart: unless-stopped restart: unless-stopped
networks: networks:
- dev_env - dev_env
@@ -80,7 +80,7 @@ services:
- .env - .env
admin: admin:
image: makeplane/plane-admin:v0.25.3 image: makeplane/plane-admin:${APP_RELEASE:-v0.25.3}
restart: unless-stopped restart: unless-stopped
networks: networks:
- dev_env - dev_env
@@ -94,7 +94,7 @@ services:
- .env - .env
live: live:
image: makeplane/plane-live:v0.25.3 image: makeplane/plane-live:${APP_RELEASE:-v0.25.3}
restart: unless-stopped restart: unless-stopped
networks: networks:
- dev_env - dev_env
@@ -108,13 +108,13 @@ services:
- .env - .env
api: api:
image: makeplane/plane-backend:v0.25.3 image: makeplane/plane-backend:${APP_RELEASE:-v0.25.3}
restart: unless-stopped restart: unless-stopped
networks: networks:
- dev_env - dev_env
volumes: volumes:
- apiserver:/code - apiserver:/code
command: ../files/bin/docker-entrypoint-api-local.sh command: ../files/volumes/docker-entrypoint-api-local.sh
depends_on: depends_on:
- plane-db - plane-db
- plane-redis - plane-redis
@@ -122,34 +122,38 @@ services:
- .env - .env
worker: worker:
image: makeplane/plane-worker:0.11 image: makeplane/plane-backend:${APP_RELEASE:-v0.25.1}
restart: unless-stopped command: ../files/volumes/docker-entrypoint-worker.sh
networks:
- dev_env
volumes: volumes:
- apiserver:/code - logs_worker:/code/plane/logs
command: ../files/bin/docker-entrypoint-worker.sh env_file:
- .env
depends_on: depends_on:
- api - api
- plane-db - plane-db
- plane-redis - plane-redis
env_file: healthcheck:
- .env test: ["CMD", "echo", "hey whats up"]
interval: 2s
timeout: 10s
retries: 15
beat-worker: beat-worker:
image: makeplane/plane-worker:0.11 image: makeplane/plane-backend:${APP_RELEASE:-v0.25.1}
restart: unless-stopped command: ../files/volumes/docker-entrypoint-beat.sh
networks:
- dev_env
volumes: volumes:
- apiserver:/code - logs_beat-worker:/code/plane/logs
command: ../files/bin/docker-entrypoint-beat.sh env_file:
- .env
depends_on: depends_on:
- api - api
- plane-db - plane-db
- plane-redis - plane-redis
env_file: healthcheck:
- .env test: ["CMD", "echo", "hey whats up"]
interval: 2s
timeout: 10s
retries: 15
migrator: migrator:
image: makeplane/plane-worker:0.11 image: makeplane/plane-worker:0.11
@@ -158,7 +162,7 @@ services:
- dev_env - dev_env
volumes: volumes:
- apiserver:/code - apiserver:/code
command: ../files/bin/docker-entrypoint-migrator.sh --settings=plane.settings.local command: ../files/volumes/docker-entrypoint-migrator.sh --settings=plane.settings.local
depends_on: depends_on:
- plane-db - plane-db
- plane-redis - plane-redis
@@ -166,14 +170,10 @@ services:
- .env - .env
proxy: proxy:
image: "nginx:1.27.4" image: "makeplane/plane-proxy:${APP_RELEASE:-v0.25.3}"
restart: unless-stopped restart: unless-stopped
networks: networks:
- dev_env - dev_env
ports:
- ${NGINX_PORT}:80
volumes:
- ../files/volumes/nginx/nginx.conf.template:/etc/nginx/conf.d/default.conf
env_file: env_file:
- .env - .env
environment: environment:
@@ -184,6 +184,11 @@ services:
- api - api
- space - space
- admin - admin
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
interval: 2s
timeout: 10s
retries: 15
volumes: volumes:
@@ -205,6 +210,10 @@ volumes:
driver: local driver: local
live: live:
driver: local driver: local
logs_beat-worker:
driver: local
logs_worker:
driver: local
networks: networks:

View File

@@ -27,6 +27,7 @@ env = [
"MINIO_ENDPOINT_SSL=0", "MINIO_ENDPOINT_SSL=0",
"API_KEY_RATE_LIMIT=60/minute", "API_KEY_RATE_LIMIT=60/minute",
"TZ=UTC", "TZ=UTC",
"APP_RELEASE=0.25.3"
] ]
mounts = [] mounts = []