Skip to content

Commit

Permalink
fix: docker standalone documentation missing secret-encryption-key en…
Browse files Browse the repository at this point in the history
…v-variable #183
  • Loading branch information
Meierschlumpf committed Jan 23, 2025
1 parent a8e83f1 commit 90d3dd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/advanced/development/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ This guide will help you set up your development environment to start contributi
#### Building the project
- `pnpm build`: Build the project for production.
- `docker build -t homarr .`: Build a docker image for the project.
- `docker run -p 7575:7575 -e AUTH_SECRET='secrets' homarr:latest`: Run the created docker image.
- `docker run -p 7575:7575 -e SECRET_ENCRYPTION_KEY='your_64_character_hex_string' homarr:latest`: Run the created docker image.
2 changes: 1 addition & 1 deletion docs/advanced/proxy/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ docker run \
-p 7575:7575 \
-v ./homarr/appdata:/appdata \
-e NODE_TLS_REJECT_UNAUTHORIZED=0 \
- e SECRET_ENCRYPTION_KEY=your_64_character_hex_string \
-e SECRET_ENCRYPTION_KEY=your_64_character_hex_string \
-d ghcr.io/homarr-labs/homarr:latest
```

Expand Down
1 change: 1 addition & 0 deletions docs/getting-started/installation/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ docker run \
-p 7575:7575 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v <your-path>/homarr/appdata:/appdata \
-e SECRET_ENCRYPTION_KEY='your_64_character_hex_string' \
-d ghcr.io/homarr-labs/homarr:latest
```

Expand Down

0 comments on commit 90d3dd3

Please sign in to comment.