-
Notifications
You must be signed in to change notification settings - Fork 92
/
docker-compose.yml
56 lines (51 loc) · 1001 Bytes
/
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
50
51
52
53
54
55
56
version: '3.7'
services:
main:
container_name: main
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
ports:
- ${SERVER_PORT}:${SERVER_PORT}
env_file:
- .env
networks:
- webnet
depends_on:
- postgres
postgres:
container_name: postgres
image: postgres:12
env_file:
- .env
networks:
- webnet
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
PG_DATA: /var/lib/postgresql/data
ports:
- ${DB_PORT}:5432
volumes:
- pgdata:/var/lib/postgresql/data
redis:
image: "redis:alpine"
container_name: redis
restart: always
healthcheck:
test: [ "CMD", "redis-cli", "ping" ]
volumes:
- .:/data
env_file:
- .env
ports:
- ${REDIS_PORT}:6379
networks:
webnet:
driver: bridge
volumes:
pgdata: