File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -39,17 +39,22 @@ To build a docker image to your local docker daemon:
39
39
make docker-image
40
40
```
41
41
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 :
43
43
```` shell
44
44
docker run -p 8080:8080 -e " SERVER_PORT=8080" -e " SERVER_HOST=0.0.0.0" -e " WWW_ROOT=/www" bee-software/kickstart
45
45
````
46
46
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 ` .
48
53
49
54
50
55
### Advanced Configuration
51
56
52
- Configuration uses properties file named after the environment:
57
+ Configuration uses properties files named after the environment:
53
58
54
59
* ` etc/test.properties ` for the test environment
55
60
* ` etc/dev.properties ` for the dev environment
You can’t perform that action at this time.
0 commit comments