UPDATE: Media module
All checks were successful
Build and Release / release (push) Successful in 1m7s

This commit is contained in:
2026-04-05 22:25:43 +07:00
parent eb404b37e9
commit 2d36004ac7
24 changed files with 1972 additions and 94 deletions

View File

@@ -26,6 +26,9 @@ services:
image: redis:8.6.2-alpine
container_name: history_redis
restart: unless-stopped
command: ["redis-server", "--appendonly", "yes"]
volumes:
- redis_data:/data
networks:
- history-api-project
@@ -79,9 +82,9 @@ services:
networks:
- history-api-project
worker:
email_worker:
build: .
container_name: history_worker
container_name: history_email_worker
restart: unless-stopped
depends_on:
db:
@@ -93,9 +96,25 @@ services:
command: ["./email-worker"]
networks:
- history-api-project
storage_worker:
build: .
container_name: history_storage_worker
restart: unless-stopped
depends_on:
db:
condition: service_healthy
cache:
condition: service_started
env_file:
- ./assets/resources/.env
command: ["./storage-worker"]
networks:
- history-api-project
volumes:
pg_data:
redis_data:
networks:
history-api-project: