-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (52 loc) · 962 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
49
50
51
52
53
54
55
56
services:
api:
build:
context: ./api
environment:
REDIS_HOST: redis
REDIS_PORT: 6379
APP_HOST: api
APP_PORT: 3000
APP_ROOT: /api
TZ: PST8PDT
ports:
- 3000:3000
restart: unless-stopped
networks:
- backend
ui:
build:
context: ./ui
environment:
EXPOSED_UI_PORT: 8090
EXPOSED_REDISCMD_PORT: 8099
TZ: PST8PDT
ports:
- 8090:80
restart: unless-stopped
networks:
- frontend
- backend
redis:
image: eqalpha/keydb:latest
environment:
TZ: PST8PDT
ports:
- 6379:6379
restart: unless-stopped
networks:
- backend
redis-commander:
image: ghcr.io/joeferner/redis-commander:latest
environment:
REDIS_HOSTS: local:redis:6379
TZ: PST8PDT
ports:
- 8099:8081
restart: unless-stopped
networks:
- frontend
- backend
networks:
frontend:
backend: