mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-13 17:36:58 +00:00
Use localhost instead of 127.0.0.1 in docker guide
The example docker-compose.yml in the docker guide sets CMD_DOMAIN to localhost. This results in HedgeDoc only being startable from http://localhost:3000 as the Content-Security-Policy forbids access to e.g. http://127.0.0.1:3000. Despite that the docs used 127.0.0.1 for linking to the instance prior to this commit. Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
13fb485ba1
commit
bbb61036c8
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ volumes:
|
|||
database:
|
||||
uploads:
|
||||
```
|
||||
After executing `docker-compose up`, HedgeDoc should be available at [http://127.0.0.1:3000](http://127.0.0.1:3000).
|
||||
After executing `docker-compose up`, HedgeDoc should be available at [http://localhost:3000](http://localhost:3000).
|
||||
You can now continue to configure your container with environment variables.
|
||||
Check out [the configuration docs](/configuration) for more details.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue