-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (50 loc) · 1.05 KB
/
docker-compose.yml
File metadata and controls
53 lines (50 loc) · 1.05 KB
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
networks:
dht-network:
driver: bridge
volumes:
test-data1:
test-data2:
test-data3:
x-solid-server: &solid-server
build:
context: docker
dockerfile: Dockerfile
networks:
- dht-network
services:
test-server1:
<<: *solid-server
environment:
- USER_EMAIL=test1@test.com
- USER_POD=test1
- USER_PASSWORD=test123
- BASE_URL=http://localhost:3000
- PORT=3000
ports:
- 3000:3000
volumes:
- test-data1:/data
test-server2:
<<: *solid-server
environment:
- USER_EMAIL=test2@test.com
- USER_POD=test2
- USER_PASSWORD=test123
- BASE_URL=http://localhost:3001
- PORT=3001
ports:
- 3001:3001
volumes:
- test-data2:/data
test-server3:
<<: *solid-server
environment:
- USER_EMAIL=test3@test.com
- USER_POD=test3
- USER_PASSWORD=test123
- BASE_URL=http://localhost:3002
- PORT=3002
ports:
- 3002:3002
volumes:
- test-data3:/data