We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb6526 commit e53055fCopy full SHA for e53055f
README.md
@@ -22,9 +22,15 @@ It takes commands from authenticated administrators over the web interface and i
22
To build the angular app for deployment make sure to have npm and the angular cli installed
23
```
24
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
29
30
31
For any deployed instance you need an administrator account to interact with the application.
32
You can start your own instance by executing
33
34
35
sbt run
36
0 commit comments