-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-stage.yml
63 lines (58 loc) · 1.63 KB
/
docker-compose-stage.yml
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
version: "3.9"
services:
redis_myresume:
container_name: redis_myresume
image: redis
restart: always
ports:
- "6383:6379"
command: redis-server --save 60 1 --loglevel warning
postgresql_myresume:
image: postgres:latest
container_name: postgresql_myresume
environment:
POSTGRES_DB: ${DATABASE_NAME}
POSTGRES_USER: ${DATABASE_USER}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
ports:
- "5435:5432"
backend_myresume:
build: .
container_name: backend_myresume
command: gunicorn mysite.wsgi --bind 0.0.0.0:8000 --reload
# command: python manage.py makemigrations && python manage.py migrate && python manage.py collectstatic --noinput gunicorn core.wsgi --bind 0.0.0.0:8000
volumes:
- ./core:/app
- static_volume:/app/static
- media_volume:/app/media
expose:
- "8000"
environment:
- SECRET_KEY=${SECRET_KEY}
- DEBUG=${DEBUG}
- ALLOWED_HOSTS=${ALLOWED_HOSTS}
- DATABASE_ENGINE=${DATABASE_ENGINE}
- DATABASE_NAME=${DATABASE_NAME}
- DATABASE_USER=${DATABASE_USER}
- DATABASE_PASSWORD=${DATABASE_PASSWORD}
- DATABASE_HOST=${DATABASE_HOST}
- DATABASE_PORT=${DATABASE_PORT}
depends_on:
- redis_myresume
- postgresql_myresume
nginx_myresume:
image: nginx
container_name: nginx_myresume
restart: always
ports:
- "80:80"
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf
- static_volume:/home/app/static
- media_volume:/home/app/media
depends_on:
- redis_myresume
- backend_myresume
volumes:
static_volume:
media_volume: