From 7e6dd9d82d1d4b98ee559e642719a17d9f6777da Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sat, 16 Mar 2024 22:32:45 +0100 Subject: [PATCH] Update: docker image & Fix: line endings --- docker-compose-dev.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 7abe8a9..23b4ac0 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -1,16 +1,16 @@ version: "3.8" - + services: django: - build: + build: context: . dockerfile: Dockerfile args: - USER_ID=1000 - image: gallery-archivist:dev + image: git.aroy-art.com/aroy/gallery-archivist:dev #container_name: django - command: > - sh -c "cd archivist + command: > + sh -c "cd archivist && python manage.py runserver 0.0.0.0:8000" volumes: - .:/app/ @@ -27,10 +27,10 @@ services: celery-worker: #build: . - image: gallery-archivist:dev + image: git.aroy-art.com/aroy/gallery-archivist:dev #container_name: celery_worker - command: > - sh -c "cd archivist + command: > + sh -c "cd archivist && celery -A core worker -l INFO" volumes: - .:/app/ @@ -44,9 +44,9 @@ services: celery-beat: #build: . - image: gallery-archivist:dev - command: > - sh -c "cd archivist + image: git.aroy-art.com/aroy/gallery-archivist:dev + command: > + sh -c "cd archivist && celery -A core beat -l INFO" volumes: - .:/app/