Skip to content

Commit e53055f

Browse files
committed
updated readme to contain hint for os x users in order to start docker host
1 parent 4cb6526 commit e53055f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,15 @@ It takes commands from authenticated administrators over the web interface and i
2222
To build the angular app for deployment make sure to have npm and the angular cli installed
2323
```
2424
cd client && npm install && ng build --prod && cd ..
25+
26+
For OS X users you need to expose the TCP port manually. The docker FAQ suggest it in this way:
27+
```
28+
docker run -d -v /var/run/docker.sock:/var/run/docker.sock -p 127.0.0.1:1234:1234 bobrik/socat TCP-LISTEN:1234,fork UNIX-CONNECT:/var/run/docker.sock
2529
```
30+
2631
For any deployed instance you need an administrator account to interact with the application.
2732
You can start your own instance by executing
33+
2834
```
2935
sbt run
3036
```

0 commit comments

Comments
 (0)