-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
111 lines (102 loc) · 2.9 KB
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
x-server: &base_server_setup
build:
context: ./
tags:
- mapswipe/mapswipe-backend:${DOCKER_TAG:-latest}
# Used for python debugging.
stdin_open: true
tty: true
environment: &base_server_environments
DEBUG: ${DEBUG:-true}
APP_ENVIRONMENT: ${APP_ENVIRONMENT:-DEV}
SECRET_KEY: ${SECRET_KEY:?error}
# Domain configs
APP_DOMAIN: ${APP_DOMAIN:-http://localhost:8000}
FRONTEND_DOMAIN: ${FRONTEND_DOMAIN:-http://localhost:3000} # NOTE: Not used right now
SESSION_COOKIE_DOMAIN: ${SESSION_COOKIE_DOMAIN:-localhost}
CSRF_COOKIE_DOMAIN: ${CSRF_COOKIE_DOMAIN:-localhost}
# Postgres
POSTGRES_DB: ${POSTGRES_DB:-mapswipe}
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
POSTGRES_HOST: ${POSTGRES_HOST:-db}
POSTGRES_PORT: ${POSTGRES_PORT:-5432}
# Redis
CELERY_REDIS_URL: ${CELERY_REDIS_URL:-redis://redis:6379/0}
CACHE_REDIS_URL: ${CACHE_REDIS_URL:-redis://redis:6379/1}
# Email (Using mailpit)
EMAIL_HOST: ${EMAIL_HOST:-mailpit}
EMAIL_PORT: ${EMAIL_PORT:-1025}
EMAIL_USE_TLS: ${EMAIL_USE_TLS:-false}
EMAIL_HOST_USER: ${EMAIL_HOST_USER:-mailpit}
EMAIL_HOST_PASSWORD: ${EMAIL_HOST_PASSWORD:-mailpit}
DEFAULT_FROM_EMAIL: ${DEFAULT_FROM_EMAIL:-Mapswipe Dev <[email protected]>}
env_file:
- path: .env
required: false
volumes:
- ./:/code/
- bpython_local:/root/bpython/ # persist bpython history
depends_on:
- db
- redis
- mailpit
x-worker: &base_worker_setup
<<: *base_server_setup
restart: unless-stopped
environment:
<<: *base_server_environments
APP_TYPE: "WORKER-BEAT"
services:
db:
image: postgis/postgis:17-3.5
environment:
POSTGRES_DB: mapswipe
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- postgres_data17:/var/lib/postgresql/data
redis:
image: redis:7
volumes:
- redis_data:/data
mailpit:
image: axllent/mailpit:latest
restart: unless-stopped
ports:
- 127.0.0.1:8025:8025 # Web
environment:
MP_MAX_MESSAGES: 200
MP_DATA_FILE: /data/mailpit.db
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1
volumes:
- mailpit_data:/data
web:
<<: *base_server_setup
command: ["/code/misc/dev/run_web.sh"]
environment:
<<: *base_server_environments
APP_TYPE: "WEB"
ports:
- 8000:8000
depends_on:
- db
- redis
worker-beat:
<<: *base_worker_setup
command: bash -c "/code/misc/dev/run_worker_beat.sh"
worker:
<<: *base_worker_setup
command: bash -c "/code/misc/dev/run_worker.sh"
healthcheck:
test: ["CMD-SHELL", "celery -A main inspect ping -d celery@$$HOSTNAME || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 30s
volumes:
postgres_data17:
redis_data:
mailpit_data:
bpython_local: