Apply formatting fixes

This commit is contained in:
Juan Luis Rodríguez 2019-11-05 23:13:31 +01:00
parent 8eaa2c1f7d
commit 829deb4fd9
No known key found for this signature in database
GPG Key ID: 782D3FECD202FC54
1 changed files with 6 additions and 5 deletions

View File

@ -35,12 +35,13 @@ And then you could launch geonetwork, making sure you join the same network, and
```console
$ docker run --name geonetwork -d -p 8080:8080 --network=mynet -e POSTGRES_DB_HOST=some-postgres -e POSTGRES_DB_PORT=5432 -e POSTGRES_DB_USERNAME=postgres -e POSTGRES_DB_PASSWORD=mysecretpassword -e POSTGRES_DB_NAME=mydbname geonetwork:postgres
```
#### Configuration environment variables
These are some environments variables that can be set to configure the database connection:
* `POSTGRES_DB_HOST`: database host name.
* `POSTGRES_DB_PORT`: port where database server is listening (by default `5432`).
* `POSTGRES_DB_NAME`: name of the database. If it doesn't exists the container will try to create it.
* `POSTGRES_DB_USERNAME`: username.
* `POSTGRES_DB_PASSWORD`: password.
- `POSTGRES_DB_HOST`: database host name.
- `POSTGRES_DB_PORT`: port where database server is listening (by default `5432`).
- `POSTGRES_DB_NAME`: name of the database. If it doesn't exist the container will try to create it.
- `POSTGRES_DB_USERNAME`: username.
- `POSTGRES_DB_PASSWORD`: password.