|
|
@@ -269,9 +269,46 @@ Download the release from [release](https://github.com/lejianwen/rustdesk-api/re
|
|
269
|
269
|
6. Open your browser and visit `http://<your server[:port]>/_admin/`, with default credentials `admin admin`. Please
|
|
270
|
270
|
change the password promptly.
|
|
271
|
271
|
|
|
|
272
|
+#### Running with my forked server-s6 image
|
|
272
|
273
|
|
|
|
274
|
+- github https://github.com/lejianwen/rustdesk-server
|
|
|
275
|
+- docker hub https://hub.docker.com/r/lejianwen/rustdesk-server-s6
|
|
|
276
|
+
|
|
|
277
|
+```yaml
|
|
|
278
|
+ networks:
|
|
|
279
|
+ rustdesk-net:
|
|
|
280
|
+ external: false
|
|
|
281
|
+ services:
|
|
|
282
|
+ rustdesk:
|
|
|
283
|
+ ports:
|
|
|
284
|
+ - 21114:21114
|
|
|
285
|
+ - 21115:21115
|
|
|
286
|
+ - 21116:21116
|
|
|
287
|
+ - 21116:21116/udp
|
|
|
288
|
+ - 21117:21117
|
|
|
289
|
+ - 21118:21118
|
|
|
290
|
+ - 21119:21119
|
|
|
291
|
+ image: lejianwen/rustdesk-server-s6:latest
|
|
|
292
|
+ environment:
|
|
|
293
|
+ - RELAY=<relay_server[:port]>
|
|
|
294
|
+ - ENCRYPTED_ONLY=1
|
|
|
295
|
+ - MUST_LOGIN=N
|
|
|
296
|
+ - TZ=Asia/Shanghai
|
|
|
297
|
+ - RUSTDESK_API_RUSTDESK_ID_SERVER=<id_server[:21116]>
|
|
|
298
|
+ - RUSTDESK_API_RUSTDESK_RELAY_SERVER=<relay_server[:21117]>
|
|
|
299
|
+ - RUSTDESK_API_RUSTDESK_API_SERVER=http://<api_server[:21114]>
|
|
|
300
|
+ volumes:
|
|
|
301
|
+ - /data/rustdesk/server:/data
|
|
|
302
|
+ - /data/rustdesk/api:/app/data #将数据库挂载
|
|
|
303
|
+ - /data/rustdesk/server:/app/conf/data #挂载key文件到api容器,可以不用使用 RUSTDESK_API_RUSTDESK_KEY
|
|
|
304
|
+ networks:
|
|
|
305
|
+ - rustdesk-net
|
|
|
306
|
+ restart: unless-stopped
|
|
|
307
|
+
|
|
|
308
|
+```
|
|
273
|
309
|
## Others
|
|
274
|
310
|
|
|
|
311
|
+- [WIKI](https://github.com/lejianwen/rustdesk-api/wiki)
|
|
275
|
312
|
- [Connection Timeout](https://github.com/lejianwen/rustdesk-api/issues/92)
|
|
276
|
313
|
- [Change client ID](https://github.com/abdullah-erturk/RustDesk-ID-Changer)
|
|
277
|
314
|
- [Web client source](https://hub.docker.com/r/keyurbhole/flutter_web_desk)
|