Replies: 3 comments
-
|
I kind of upgraded it from 0.27.0 to 0.28.0. With a lot of help from Zed's diffs and Claude helping me through errors. Just 2 steps
version: "3.8"
services:
web:
image: makeplane/plane-frontend:${APP_RELEASE:-v0.28.0}
depends_on:
- api
- worker
env_file:
- .env
space:
image: makeplane/plane-space:${APP_RELEASE:-v0.28.0}
depends_on:
- api
- worker
- web
env_file:
- .env
admin:
image: makeplane/plane-admin:${APP_RELEASE:-v0.28.0}
depends_on:
- api
- web
env_file:
- .env
live:
image: makeplane/plane-live:${APP_RELEASE:-v0.28.0}
depends_on:
- api
- web
env_file:
- .env
api:
image: makeplane/plane-backend:${APP_RELEASE:-v0.28.0}
command: ./bin/docker-entrypoint-api.sh
volumes:
- logs_api:/code/plane/logs
depends_on:
- plane-db
- plane-redis
- plane-mq
env_file:
- .env
worker:
image: makeplane/plane-backend:${APP_RELEASE:-v0.28.0}
command: ./bin/docker-entrypoint-worker.sh
volumes:
- logs_worker:/code/plane/logs
depends_on:
- api
- plane-db
- plane-redis
- plane-mq
env_file:
- .env
beat-worker:
image: makeplane/plane-backend:${APP_RELEASE:-v0.28.0}
command: ./bin/docker-entrypoint-beat.sh
volumes:
- logs_beat-worker:/code/plane/logs
depends_on:
- api
- plane-db
- plane-redis
- plane-mq
env_file:
- .env
migrator:
image: makeplane/plane-backend:${APP_RELEASE:-v0.28.0}
command: ./bin/docker-entrypoint-migrator.sh
volumes:
- logs_migrator:/code/plane/logs
depends_on:
- plane-db
- plane-redis
env_file:
- .env
plane-db:
image: postgres:17-alpine
command: postgres -c 'max_connections=1000'
volumes:
- pgdata:/var/lib/postgresql/data
env_file:
- .env
plane-redis:
image: valkey/valkey:7.2.5-alpine
volumes:
- redisdata:/data
env_file:
- .env
plane-mq:
image: rabbitmq:3.13.6-management-alpine
volumes:
- rabbitmq_data:/var/lib/rabbitmq
env_file:
- .env
plane-minio:
image: minio/minio:latest
command: server /export --console-address ":9090"
volumes:
- uploads:/export
env_file:
- .env
proxy:
image: makeplane/plane-proxy:${APP_RELEASE:-v0.28.0}
command:
[
"caddy",
"run",
"--config",
"/etc/caddy/Caddyfile",
"--adapter",
"caddyfile",
]
depends_on:
- web
- api
- space
- admin
- live
env_file:
- .env
volumes:
- proxy_config:/config
- proxy_data:/data
volumes:
pgdata:
redisdata:
uploads:
logs_api:
logs_worker:
logs_beat-worker:
logs_migrator:
rabbitmq_data:
proxy_config:
proxy_data:
Domain=mysub.domain.com
# Upgraded from 0.27.0 -> 0.28.0 (Caddy)
+ SSL=true
+ APP_DOMAIN=${Domain}
- WEB_URL=${Domain}
+ WEB_URL=https://${Domain}
+ SITE_ADDRESS=:80
...I haven't tested thoroughly but it seems to work. This also fixed a few bugs I was having like the login redirecting me to "Page Not Found" for some reason. Feel free to make a PR out of this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
A pull request for it exists here: #319 |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@Blankeos have you updated from v0.28.0 yet? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The features on 0.28.0 seem neat: https://github.com/makeplane/plane/releases/tag/v0.28.0. Any help is appreciated!
Beta Was this translation helpful? Give feedback.
All reactions