forked from NarHakobyan/awesome-nest-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (41 loc) · 830 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
version: "3"
volumes:
db: # mount it internally instead of a folder. it avoids file lock problems
services:
app:
env_file:
- .env
container_name: awesome_nest_boilerplate
restart: always
build: .
ports:
- "$PORT:$PORT"
depends_on:
- postgres
- redis
links:
- postgres
redis:
image: "redis:alpine"
ports:
- "6379:6379"
redis-commander:
image: rediscommander/redis-commander:latest
environment:
- REDIS_HOSTS=local:redis:6379
ports:
- "8081:8081"
depends_on:
- redis
postgres:
image: postgres
container_name: postgres
restart: always
environment:
POSTGRES_PASSWORD: postgres
TZ: 'GMT'
PGTZ: 'GMT'
ports:
- "5432:5432"
volumes:
- db:/var/lib/postgresql/data