diff --git a/Docker.md b/Docker.md index d7411e8..4d07fe8 100644 --- a/Docker.md +++ b/Docker.md @@ -12,7 +12,7 @@ docker run -d \ ``` # Mounting Volume -You can mount a volume to the `/app` Statping directory. +You can mount a volume to the `/app` Statping directory. This folder will contain `logs`, `config.yml`, and static assets if you want to edit the SCSS/CSS. ```bash docker run -d \ -p 8080:8080 \ @@ -22,7 +22,7 @@ docker run -d \ ``` # Attach a SSL Certificate -When you mount `server.crt` and `server.key` to the `/app` directory, Statping will run a HTTPS server on port 443. +When you mount `server.crt` and `server.key` to the `/app` directory, Statping will run a HTTPS server on port 443. Checkout the [SSL Wiki](https://github.com/hunterlong/statping/wiki/SSL) documentation to see more information about this. ```bash docker run -d \ -p 443:443 \