Skip to content

Commit bd52adc

Browse files
committed
Update instructions in README file
Provide more precise instructions for running the docker image on OSX, with either a local or docker Postgres instance.
1 parent 3a9e2b9 commit bd52adc

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,22 @@ To build a docker image to your local docker daemon:
3939
make docker-image
4040
```
4141

42-
To run the previously built docker image, e.g.:
42+
To run the previously built docker image against a local Postgres instance on OSX:
4343
````shell
4444
docker run -p 8080:8080 -e "SERVER_PORT=8080" -e "SERVER_HOST=0.0.0.0" -e "WWW_ROOT=/www" bee-software/kickstart
4545
````
4646

47-
You can now sign in with `guest/password`.
47+
To run the previously built docker image against a Postgres instance in Docker on OSX:
48+
````shell
49+
docker run -p 8080:8080 -e "SERVER_PORT=8080" -e "SERVER_HOST=0.0.0.0" -e "DB_HOST=docker.for.mac.localhost" -e "WWW_ROOT=/www" bee-software/kickstart
50+
````
51+
52+
You can now sign in at `http://localhost:8080` with `guest/password`.
4853

4954

5055
### Advanced Configuration
5156

52-
Configuration uses properties file named after the environment:
57+
Configuration uses properties files named after the environment:
5358

5459
* `etc/test.properties` for the test environment
5560
* `etc/dev.properties` for the dev environment

0 commit comments

Comments
 (0)