-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (37 loc) · 795 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
45 lines (37 loc) · 795 Bytes
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:
reverse-proxy:
image: nginx:1.27.3-alpine
networks:
- timeswap-network
timeswap-auth:
image: ghcr.io/tranduckhuy/timeswap-auth:latest
networks:
- timeswap-network
timeswap-api:
image: ghcr.io/tranduckhuy/timeswap-api:latest
networks:
- timeswap-network
redis:
image: redis:alpine3.20
networks:
- timeswap-network
authdb:
image: postgres:14.15-alpine3.21
networks:
- timeswap-network
timeswapdb:
image: postgres:14.15-alpine3.21
networks:
- timeswap-network
portainer:
image: portainer/portainer-ce:2.25.1-alpine
networks:
- timeswap-network
volumes:
redis_data:
authdb_data:
timeswapdb_data:
portainer_data:
networks:
timeswap-network:
driver: bridge