Update: docker image & Fix: line endings

This commit is contained in:
Aroy-Art 2024-03-16 22:32:45 +01:00
parent bcb3dedc36
commit 7e6dd9d82d
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -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/