mirror of
https://github.com/evraz-hack/backend.git
synced 2024-11-10 19:36:38 +03:00
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
version: '3'
|
|
|
|
volumes:
|
|
exhauster_analytics_local_postgres_data: {}
|
|
exhauster_analytics_local_postgres_data_backups: {}
|
|
|
|
services:
|
|
django: &django
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/local/django/Dockerfile
|
|
image: exhauster_analytics_local_django
|
|
container_name: exhauster_analytics_local_django
|
|
depends_on:
|
|
- postgres
|
|
- redis
|
|
volumes:
|
|
- .:/app:z
|
|
env_file:
|
|
- ./.envs/.local/.django
|
|
- ./.envs/.local/.postgres
|
|
ports:
|
|
- "8000:8000"
|
|
command: /start
|
|
|
|
postgres:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/production/postgres/Dockerfile
|
|
image: exhauster_analytics_production_postgres
|
|
container_name: exhauster_analytics_local_postgres
|
|
volumes:
|
|
- exhauster_analytics_local_postgres_data:/var/lib/postgresql/data
|
|
- exhauster_analytics_local_postgres_data_backups:/backups
|
|
env_file:
|
|
- ./.envs/.local/.postgres
|
|
|
|
redis:
|
|
image: redis:6
|
|
container_name: exhauster_analytics_local_redis
|
|
|
|
celeryworker:
|
|
<<: *django
|
|
image: exhauster_analytics_local_celeryworker
|
|
container_name: exhauster_analytics_local_celeryworker
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
ports: []
|
|
command: /start-celeryworker
|
|
|
|
celerybeat:
|
|
<<: *django
|
|
image: exhauster_analytics_local_celerybeat
|
|
container_name: exhauster_analytics_local_celerybeat
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
ports: []
|
|
command: /start-celerybeat
|
|
|
|
flower:
|
|
<<: *django
|
|
image: exhauster_analytics_local_flower
|
|
container_name: exhauster_analytics_local_flower
|
|
ports:
|
|
- "5555:5555"
|
|
command: /start-flower
|