Skip to content

Commit

Permalink
Fix docker script
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 authored Oct 17, 2020
1 parent 6e8316f commit cbfe79d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions documentation/docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ docker volume create home_panel_data
```bash
docker run -d \
-p 8234:8234 \
-v home_panel_data:/data
-v ~/ssl/fullchain.pem:/data/ssl/fullchain.pem
-v ~/ssl/privkey.pem:/data/ssl/privkey.pem
-v home_panel_data:/data \
-v ~/ssl/fullchain.pem:/data/ssl/fullchain.pem \
-v ~/ssl/privkey.pem:/data/ssl/privkey.pem \
-e SSL_CERTFILE=fullchain.pem \
-e SSL_KEYFILE=privkey.pem \
timmo001/home-panel
Expand All @@ -108,7 +108,7 @@ docker run -d \

```bash
docker run -d \
-v home_panel_data:/data
-v home_panel_data:/data \
-p 8234:8234 \
timmo001/home-panel
```
Expand Down

0 comments on commit cbfe79d

Please sign in to comment.