-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
48 lines (44 loc) · 915 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
version: "3.7"
services:
postgres:
image: postgres:15.6-alpine
restart: unless-stopped
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=proghours
- TZ=Asia/Dhaka
- PGTZ=Asia/Dhaka
ports:
- "5432:5432"
volumes:
- /var/lib/postgresql/data
networks:
- proghours
pgadmin:
image: dpage/pgadmin4:8.3
restart: unless-stopped
environment:
PGADMIN_DEFAULT_EMAIL: naimulcsx@gmail.com
PGADMIN_DEFAULT_PASSWORD: pgadmin
ports:
- "8800:80"
volumes:
- /var/lib/pgadmin
adminer:
image: adminer:4.8.1
restart: unless-stopped
ports:
- 8888:8080
networks:
- proghours
redis:
image: redis:7.2.4-alpine
restart: unless-stopped
ports:
- 6379:6379
volumes:
- /var/lib/redis/data
networks:
proghours:
driver: bridge