diff --git a/deploy/selfhost/docker-compose.yml b/deploy/selfhost/docker-compose.yml index 833c5a572..c91893f7e 100644 --- a/deploy/selfhost/docker-compose.yml +++ b/deploy/selfhost/docker-compose.yml @@ -54,7 +54,7 @@ x-app-env: &app-env services: web: - image: ${DOCKERHUB_USER:-makeplane}/plane-frontend:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-frontend:${APP_RELEASE:-stable} command: node web/server.js web deploy: replicas: ${WEB_REPLICAS:-1} @@ -65,7 +65,7 @@ services: - worker space: - image: ${DOCKERHUB_USER:-makeplane}/plane-space:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-space:${APP_RELEASE:-stable} command: node space/server.js space deploy: replicas: ${SPACE_REPLICAS:-1} @@ -77,7 +77,7 @@ services: - web admin: - image: ${DOCKERHUB_USER:-makeplane}/plane-admin:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-admin:${APP_RELEASE:-stable} command: node admin/server.js admin deploy: replicas: ${ADMIN_REPLICAS:-1} @@ -88,7 +88,7 @@ services: - web live: - image: ${DOCKERHUB_USER:-makeplane}/plane-live:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-live:${APP_RELEASE:-stable} command: node live/dist/server.js live environment: <<: [*live-env] @@ -101,7 +101,7 @@ services: - web api: - image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-backend:${APP_RELEASE:-stable} command: ./bin/docker-entrypoint-api.sh deploy: replicas: ${API_REPLICAS:-1} @@ -117,7 +117,7 @@ services: - plane-mq worker: - image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-backend:${APP_RELEASE:-stable} command: ./bin/docker-entrypoint-worker.sh deploy: replicas: ${WORKER_REPLICAS:-1} @@ -134,7 +134,7 @@ services: - plane-mq beat-worker: - image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-backend:${APP_RELEASE:-stable} command: ./bin/docker-entrypoint-beat.sh deploy: replicas: ${BEAT_WORKER_REPLICAS:-1} @@ -151,7 +151,7 @@ services: - plane-mq migrator: - image: ${DOCKERHUB_USER:-makeplane}/plane-backend:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-backend:${APP_RELEASE:-stable} command: ./bin/docker-entrypoint-migrator.sh deploy: replicas: 1 @@ -213,7 +213,7 @@ services: # Comment this if you already have a reverse proxy running proxy: - image: ${DOCKERHUB_USER:-makeplane}/plane-proxy:${APP_RELEASE:-stable} + image: ${DOCKERHUB_USER:-artifacts.plane.so/makeplane}/plane-proxy:${APP_RELEASE:-stable} ports: - target: 80 published: ${NGINX_PORT:-80} diff --git a/deploy/selfhost/variables.env b/deploy/selfhost/variables.env index 118e71d86..78031a4ac 100644 --- a/deploy/selfhost/variables.env +++ b/deploy/selfhost/variables.env @@ -60,4 +60,4 @@ GUNICORN_WORKERS=1 MINIO_ENDPOINT_SSL=0 # API key rate limit -API_KEY_RATE_LIMIT="60/minute" +API_KEY_RATE_LIMIT=60/minute