-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
executable file
·57 lines (53 loc) · 1.11 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
50
51
52
53
54
55
56
57
version: "3.3"
volumes:
db-data:
driver: local
services:
redis:
image: redis:3.2.10
ports:
- "16379:6379"
logging:
driver: none
# maria_db:
# image: library/mariadb:10.2.6
# ports:
# - "13306:3306"
# volumes:
# - "mariadb_data:/var/lib/mysql"
# environment:
# - MYSQL_ROOT_PASSWORD=option123
# logging:
# driver: none
postgres:
image: postgres:latest
ports:
- 5432:5432
volumes:
- db-data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: "postgres"
POSTGRES_USER: "postgres"
redis-commander:
image: rediscommander/redis-commander:latest
environment:
- REDIS_HOSTS=local:redis:6379
ports:
- "3002:8081"
logging:
driver: none
# ui:
# build:
# context: ./ui
# dockerfile: Dockerfile.dev
# command: ng serve --watch --host=0.0.0.0
# depends_on:
# - redis
# volumes:
# - './ui:/app'
# ports:
# - '4200:4200'
# environment:
# - USER=$USER
# - DOCKER=TRUE
# tty: true