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" version: "3.8"
services: services:
django: django:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
args: args:
- USER_ID=1000 - USER_ID=1000
image: gallery-archivist:dev image: git.aroy-art.com/aroy/gallery-archivist:dev
#container_name: django #container_name: django
command: > command: >
sh -c "cd archivist sh -c "cd archivist
&& python manage.py runserver 0.0.0.0:8000" && python manage.py runserver 0.0.0.0:8000"
volumes: volumes:
- .:/app/ - .:/app/
@ -27,10 +27,10 @@ services:
celery-worker: celery-worker:
#build: . #build: .
image: gallery-archivist:dev image: git.aroy-art.com/aroy/gallery-archivist:dev
#container_name: celery_worker #container_name: celery_worker
command: > command: >
sh -c "cd archivist sh -c "cd archivist
&& celery -A core worker -l INFO" && celery -A core worker -l INFO"
volumes: volumes:
- .:/app/ - .:/app/
@ -44,9 +44,9 @@ services:
celery-beat: celery-beat:
#build: . #build: .
image: gallery-archivist:dev image: git.aroy-art.com/aroy/gallery-archivist:dev
command: > command: >
sh -c "cd archivist sh -c "cd archivist
&& celery -A core beat -l INFO" && celery -A core beat -l INFO"
volumes: volumes:
- .:/app/ - .:/app/