fix: address PR review comments

- Change WEB_URL from https to http (per project guidelines)
- Change CORS_ALLOWED_ORIGINS from https to http (per project guidelines)
- Pin MinIO to specific version RELEASE.2025-09-07T16-13-09Z (avoid latest tag)
This commit is contained in:
Rasaboun
2025-12-24 20:31:02 +01:00
parent 7ad8913ea3
commit bdf1f04b01
2 changed files with 3 additions and 3 deletions

View File

@@ -117,7 +117,7 @@ services:
- .env - .env
plane-minio: plane-minio:
image: minio/minio:latest image: minio/minio:RELEASE.2025-09-07T16-13-09Z
command: server /export --console-address ":9090" command: server /export --console-address ":9090"
restart: unless-stopped restart: unless-stopped
volumes: volumes:

View File

@@ -11,7 +11,7 @@ live_server_secret_key = "${base64:32}"
env = [ env = [
"APP_DOMAIN=${main_domain}", "APP_DOMAIN=${main_domain}",
"APP_RELEASE=v1.2.1", "APP_RELEASE=v1.2.1",
"WEB_URL=https://${main_domain}", "WEB_URL=http://${main_domain}",
"PGHOST=plane-db", "PGHOST=plane-db",
"PGDATABASE=plane", "PGDATABASE=plane",
"POSTGRES_USER=plane", "POSTGRES_USER=plane",
@@ -41,7 +41,7 @@ env = [
"RABBITMQ_VHOST=plane", "RABBITMQ_VHOST=plane",
"API_BASE_URL=http://api:8000", "API_BASE_URL=http://api:8000",
"DEBUG=0", "DEBUG=0",
"CORS_ALLOWED_ORIGINS=https://${main_domain}", "CORS_ALLOWED_ORIGINS=http://${main_domain}",
"GUNICORN_WORKERS=1", "GUNICORN_WORKERS=1",
"USE_MINIO=1", "USE_MINIO=1",
"DATABASE_URL=postgresql://plane:${db_password}@plane-db/plane", "DATABASE_URL=postgresql://plane:${db_password}@plane-db/plane",