mirror of
https://github.com/BlackWallTeam/Backend.git
synced 2024-11-10 19:06:33 +03:00
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
|
version: '3'
|
||
|
|
||
|
volumes:
|
||
|
real_estate_search_local_postgres_data: {}
|
||
|
real_estate_search_local_postgres_data_backups: {}
|
||
|
|
||
|
services:
|
||
|
django: &django
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./compose/local/django/Dockerfile
|
||
|
image: real_estate_search_local_django
|
||
|
container_name: real_estate_search_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: real_estate_search_production_postgres
|
||
|
container_name: real_estate_search_local_postgres
|
||
|
volumes:
|
||
|
- real_estate_search_local_postgres_data:/var/lib/postgresql/data
|
||
|
- real_estate_search_local_postgres_data_backups:/backups
|
||
|
env_file:
|
||
|
- ./.envs/.local/.postgres
|
||
|
|
||
|
redis:
|
||
|
image: redis:6
|
||
|
container_name: real_estate_search_local_redis
|
||
|
|
||
|
celeryworker:
|
||
|
<<: *django
|
||
|
image: real_estate_search_local_celeryworker
|
||
|
container_name: real_estate_search_local_celeryworker
|
||
|
depends_on:
|
||
|
- redis
|
||
|
- postgres
|
||
|
ports: []
|
||
|
command: /start-celeryworker
|
||
|
|
||
|
celerybeat:
|
||
|
<<: *django
|
||
|
image: real_estate_search_local_celerybeat
|
||
|
container_name: real_estate_search_local_celerybeat
|
||
|
depends_on:
|
||
|
- redis
|
||
|
- postgres
|
||
|
ports: []
|
||
|
command: /start-celerybeat
|
||
|
|
||
|
flower:
|
||
|
<<: *django
|
||
|
image: real_estate_search_local_flower
|
||
|
container_name: real_estate_search_local_flower
|
||
|
ports:
|
||
|
- "5555:5555"
|
||
|
command: /start-flower
|