forked from rickywei/WallStreetSheep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
45 lines (41 loc) · 953 Bytes
/
docker-compose.yaml
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
services:
aktools:
image: registry.cn-shanghai.aliyuncs.com/akfamily/aktools:1.8.95
container_name: aktools
restart: always
ports:
- 8080:8080
redis:
image: redis:latest
container_name: redis
restart: always
ports:
- 6379:6379
pg:
image: postgres
container_name: postgres
restart: always
environment:
POSTGRES_PASSWORD: postgres
volumes:
- ./volumes/pg:/var/lib/postgresql/data
ports:
- 5432:5432
# adminer:
# image: adminer
# container_name: adminer
# restart: always
# ports:
# - 8080:8080
# pgbouncer:
# image: bitnami/pgbouncer
# container_name: pgbouncer
# restart: always
# environment:
# - POSTGRESQL_HOST=postgres
# - POSTGRESQL_PORT=5432
# - POSTGRESQL_USERNAME=postgres
# - POSTGRESQL_PASSWORD=postgres
# - PGBOUNCER_DATABASE=wallstreetsheep
# ports:
# - 6432:6432