Consolidate and organize config files (#61)

This commit is contained in:
Michael Plunkett
2025-03-03 08:10:23 -06:00
committed by GitHub
parent 9529784fa2
commit 85cec9fbb9
6 changed files with 17 additions and 15 deletions

View File

@@ -7,7 +7,7 @@ services:
web:
build:
context: .
dockerfile: web.Dockerfile
dockerfile: docker/web/Dockerfile
restart: always
env_file: .env.prod
environment:
@@ -31,7 +31,7 @@ services:
worker:
build:
context: .
dockerfile: worker.Dockerfile
dockerfile: docker/worker/Dockerfile
restart: always
env_file: .env.prod
command: celery --app=app.worker.main.celery worker -Q high_priority,low_priority --concurrency=${CONCURRENCY} --max-tasks-per-child=100