Bot Updating Templated Files

pull/5/head
LinuxServer-CI 2019-06-20 19:19:05 -04:00
rodzic 907dfe4ae9
commit 27bc5df90c
1 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -39,7 +39,7 @@ docker create \
-e GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 `#optional` \
-p 8080:8080 \
-p 8081:8081 \
-v <path to data>:/config \
-v /path/to/data:/config \
--restart unless-stopped \
linuxserver/calibre
```
@ -63,7 +63,7 @@ services:
- GUAC_USER=abc #optional
- GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 #optional
volumes:
- <path to data>:/config
- /path/to/data:/config
ports:
- 8080:8080
- 8081:8081
@ -117,7 +117,7 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel
This image sets up the calibre desktop app and makes its interface available via Guacamole server in the browser. The interface is available at `http://your-ip:8080`.
The default username and password are `abc` and `abc`. Custom usernames and passwords can be set via optional docker environment variables. Keep in mind that the `GUACPASS` variable accepts the `md5 hash` of the desired password. The md5 hash can be generated by either of the following commands:
By default, there is no username or password set. Custom usernames and passwords can be set via optional docker environment variables. Keep in mind that the `GUACPASS` variable accepts the `md5 hash` of the desired password (the sample above is the hash for `abc`). The md5 hash can be generated by either of the following commands:
```
echo -n password | openssl md5
@ -129,6 +129,8 @@ printf '%s' password | md5sum
Port 8081 is reserved for Calibre's built-in webserver, which can be enabled within the desktop app settings, and the internal port must be set to `8081` although it will then be available at the host mapped port for external access.
You can access advanced features of the Guacamole remote desktop using `ctrl`+`alt`+`shift` enabling you to use remote copy/paste and different languages.
## Support Info