Update README

This commit is contained in:
Kelvin Chen 2016-10-07 02:45:27 -04:00
parent 058ebc3b07
commit 6d9f404658
1 changed files with 9 additions and 2 deletions

View File

@ -43,10 +43,17 @@ Copy the `config.default` file to `config` and change the variables as desired.
The variables are all self-explanatory. The variables are all self-explanatory.
If you want to enable SSL, you would need to have your certificate and key be If you want to enable SSL, you would need to have your certificate and key be
at `/config/frontend/ssl.crt` and `/config/frontend/ssl.key` respectively. The at `/config/frontend/ssl.crt` and `/config/frontend/ssl.key` respectively. The
frontend image includes a command `ssl-gen` to automatically create self signed frontend image includes a command `ssl-gen` to automatically create self signed
certificates for you. certificates for you.
## PlexPass
If you own PlexPass, you can get the docker image to auto-update to the latest
PlexPass version when the container starts up. This is arguably bad docker
practice since containers are supposed to be immutable, but in this case, I
think the convenience outweighs that. All you have to do is set the
`PLEX_EMAIL` and `PLEX_PASSWORD` variables in the config file.
## Where is my data? ## Where is my data?
All data are saved in the docker volumes `seedbox_config` or All data are saved in the docker volumes `seedbox_config` or
`seedbox_torrents`. `seedbox_torrents`.
@ -58,7 +65,7 @@ editing the volumes settings in the `docker-compose.yml` file.
The OpenVPN container generates a single client key/cert pair by default. The OpenVPN container generates a single client key/cert pair by default.
Run the command below to get your OpenVPN config file: Run the command below to get your OpenVPN config file:
```sh ```sh
$ docker exec seedbox_openvpn_1 create-client client >> client.ovpn $ docker-compose exec openvpn export-client client >> client.ovpn
``` ```
Edit the `client.ovpn` and replace the line `remote MYSERVER_HOST 1194` with Edit the `client.ovpn` and replace the line `remote MYSERVER_HOST 1194` with
the hostname or IP address of your server. the hostname or IP address of your server.