-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·47 lines (42 loc) · 1.12 KB
/
docker-compose.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
version: "3.9"
services:
redis_myresume:
container_name: redis_myresume
image: redis
restart: always
ports:
- "6380:6379" # Updated port mapping
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: python manage.py runserver 0.0.0.0:8000
volumes:
- ./core:/app/
ports:
- "8000: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:
- postgresql_myresume
- redis_myresume
volumes:
static_volume:
media_volume: