-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (47 loc) · 1.24 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
48
49
version: '2'
services:
nginx:
restart: always
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
ports:
- 80:80
server:
restart: unless-stopped
build:
context: .
dockerfile: ./docker/backend/Dockerfile
entrypoint: /app/docker/backend/server-entrypoint.sh
volumes:
- static_volume:/app/backend/django_static
expose:
- 8000
environment:
REDIS_HOST: "redis://redis:6379/1"
REDIS_PASSWORD: ""
DJANGO_DB: postgresql
POSTGRES_HOST: db
POSTGRES_NAME: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: 5432
redis:
restart: unless-stopped
image: redis:7.2.4-alpine
expose:
- 6379
db:
image: postgres:16.1-alpine
restart: unless-stopped
volumes:
- postgres_data:/var/lib/postgresql/data/
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
expose:
- 5432
volumes:
static_volume: {}
postgres_data: {}