-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
55 lines (53 loc) · 1.03 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
version: '3'
services:
proxnut:
build:
context: ./proxnut-proxy
dockerfile: Dockerfile
ports:
- "3003:3003"
environment:
- PROXY_HOST=proxnut
- BACKEND_HOST=backend
- REDIS_HOST=redis
- REDIS_PORT=6379
backend:
build:
context: ./demo-backend
dockerfile: Dockerfile
ports:
- "4444:4444"
webserver:
build:
context: ./demo-webserver
dockerfile: Dockerfile
ports:
- "4445:4445"
frontend:
build:
context: ./frontend/cashu-wallet-wc
dockerfile: Dockerfile
ports:
- "8080:80"
demo:
build:
context: ./demo-frontend
dockerfile: Dockerfile
ports:
- "5173:5173"
redis:
command: redis-server --appendonly yes
image: redis
ports:
- "6379:6379"
volumes:
- ./redis-volume:/data
dashboard:
build:
context: ./dashboard
dockerfile: Dockerfile
ports:
- "5515:5515"
environment:
REDIS_HOST: redis
REDIS_PORT: 6379