Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update using_docker.md HTTP section #1167

Merged
merged 2 commits into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/maintain/hornet/2.0.0-rc.6/docs/how_tos/using_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,16 @@ If you want to change the port to a different value you can create a file named
```
HTTP_PORT=9000
```
If you don't have a DNS name for your node, you can use the (external) IP address for `NODE_HOST`, for example, `192.168.1.123`, or your public IP address.
With this setting, you can reach the node dashboard from within your network or the internet.
You don’t need `COMPOSE_FILE` and `ACME_EMAIL` for HTTP. You can remove them from your `.env` file or place a `#` before it to make it a remark:

```
#COMPOSE_FILE=docker-compose.yml:docker-compose-https.yml
#ACME_EMAIL=your-email@example.com

NODE_HOST=your-external-ip-address
```

### 2. Setup neighbors

Expand Down
Loading