dev: update worker script and update yml file to point to org

This commit is contained in:
pablohashescobar 2023-04-01 20:07:22 +05:30
parent f124355809
commit d45979eacb
2 changed files with 3 additions and 4 deletions

View File

@ -2,5 +2,4 @@
set -e
python manage.py wait_for_db
python manage.py migrate
python manage.py rqworker

View File

@ -35,7 +35,7 @@ services:
- redisdata:/data
plane-web:
container_name: planefrontend
image: plane-frontend:latest
image: makeplane/plane-frontend:latest
restart: always
command: node apps/app/server.js
env_file:
@ -44,7 +44,7 @@ services:
- 3000:3000
plane-api:
container_name: planebackend
image: plane-backend:latest
image: makeplane/plane-backend:latest
build:
context: ./apiserver
dockerfile: Dockerfile.api
@ -62,7 +62,7 @@ services:
- redis:redis
plane-worker:
container_name: planerqworker
image: plane-worker:latest
image: makeplane/plane-worker:latest
depends_on:
- redis
- db