-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
137 lines (128 loc) · 3.08 KB
/
docker-compose.yml
File metadata and controls
137 lines (128 loc) · 3.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
services:
userdata-server:
build:
context: ./userdata-server
container_name: freestorage-userdata-server
restart: unless-stopped
ports:
- "8086:8086"
volumes:
- ./userdata-server/data:/app/data
environment:
- PORT=8086
- SECRET_KEY=${SECRET_KEY:-YOUR_SUPER_SECRET_KEY}
- INTERNAL_API_KEY=${INTERNAL_API_KEY:-YOUR_INTERNAL_SERVICE_KEY}
content-server:
build:
context: ./content-server
container_name: freestorage-content-server
restart: unless-stopped
ports:
- "8085:8085"
- "3002:3002"
volumes:
- ./content-server/data:/app/data
environment:
- HTTP_PORT=8085
- WS_PORT=3002
- USERDATA_SERVER_URL=http://userdata-server:8086
- SECRET_KEY=${SECRET_KEY:-YOUR_SUPER_SECRET_KEY}
- INTERNAL_API_KEY=${INTERNAL_API_KEY:-YOUR_INTERNAL_SERVICE_KEY}
depends_on:
- userdata-server
admin:
build:
context: ./userdata-server
container_name: freestorage-admin
restart: unless-stopped
command: node admin/server.js
volumes:
- ./userdata-server/data:/app/data
environment:
- PORT=3004
- ADMIN_TOKEN=${ADMIN_TOKEN:-YOUR_ADMIN_PASSWORD}
depends_on:
- userdata-server
host:
build:
context: ./host
container_name: freestorage-host-server
restart: unless-stopped
ports:
- "8087:8087"
environment:
- PORT=8087
- USERDATA_SERVER_URL=http://userdata-server:8086
depends_on:
- userdata-server
tunnel:
image: cloudflare/cloudflared:latest
container_name: freestorage-tunnel
restart: unless-stopped
command: tunnel run
environment:
- TUNNEL_TOKEN=${TUNNEL_TOKEN}
depends_on:
- userdata-server
- content-server
- host
bot1:
build:
context: ./bot
container_name: bot1
restart: unless-stopped
volumes:
- ./bot/instances/bot1:/bot-data
environment:
- WS_URL=ws://content-server:3002
- DATA_DIR=/bot-data
depends_on:
- content-server
bot2:
build:
context: ./bot
container_name: bot2
restart: unless-stopped
volumes:
- ./bot/instances/bot2:/bot-data
environment:
- WS_URL=ws://content-server:3002
- DATA_DIR=/bot-data
depends_on:
- content-server
bot3:
build:
context: ./bot
container_name: bot3
restart: unless-stopped
volumes:
- ./bot/instances/bot3:/bot-data
environment:
- WS_URL=ws://content-server:3002
- DATA_DIR=/bot-data
depends_on:
- content-server
bot4:
build:
context: ./bot
container_name: bot4
restart: unless-stopped
volumes:
- ./bot/instances/bot4:/bot-data
environment:
- WS_URL=ws://content-server:3002
- DATA_DIR=/bot-data
depends_on:
- content-server
bot5:
build:
context: ./bot
container_name: bot5
restart: unless-stopped
volumes:
- ./bot/instances/bot5:/bot-data
environment:
- WS_URL=ws://content-server:3002
- DATA_DIR=/bot-data
depends_on:
- content-server