docker: remove YAML anchor and merge directives from docker-compose.prod.yml

Fixes #42
This commit is contained in:
Herculino Trotta
2025-01-16 09:22:08 -03:00
parent 6955294283
commit 3dcee4dbf2

View File

@@ -1,5 +1,5 @@
services: services:
web: &django web:
image: eitchtee/wygiwyh:latest image: eitchtee/wygiwyh:latest
container_name: ${SERVER_NAME} container_name: ${SERVER_NAME}
command: /start command: /start
@@ -23,10 +23,11 @@ services:
- POSTGRES_DB=${SQL_DATABASE} - POSTGRES_DB=${SQL_DATABASE}
procrastinate: procrastinate:
<<: *django image: eitchtee/wygiwyh:latest
container_name: ${PROCRASTINATE_NAME} container_name: ${PROCRASTINATE_NAME}
depends_on: depends_on:
- db - db
ports: [ ] env_file:
- .env
command: /start-procrastinate command: /start-procrastinate
restart: unless-stopped restart: unless-stopped