some more relative url roots in editor_edit, removed javascript uglifying for staging, added debug message for docker websocket connection url.

added doku for setting up docker daemon for codeocean
This commit is contained in:
Ralf Teusner
2016-10-07 14:16:24 +02:00
parent 59119e43d5
commit 1dfd6f61dc
4 changed files with 16 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
In order to make containers accessible for codeocean, they need to be reachable via tcp.
For this, the docker daemon has to be started with the following options:
DOCKER_OPTS='-H tcp://127.0.0.1:4243 -H unix:///var/run/docker.sock --iptables=false'
This binds the daemon to the specified socket (for access via the command line on the machine) as well as the specified tcp url.
Either pass these options to the starting call, or specify them in the docker config file.
In Ubuntu, this file is located under: /ect/default/docker