Skip to content

Commit 01f56a8

Browse files
committed
Makes dockerui compatible with dokku
These changes allow you to deploy dockerui to dokku. All these changes are really to make the go buildpack happy. Once pushed to dokku, configure docker to bind on the docker0 bridge : ``` ip a s docker0 | grep inet => inet 172.17.42.1/16 scope global docker0 echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -H tcp://172.17.42.1:4243 -api-enable-cors"' > /etc/default/docker restart docker dokku config:add dockerui DOCKER_ENDPOINT=http://172.17.42.1:4243 ```
1 parent 2946a97 commit 01f56a8

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Diff for: .godir

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dockerui

Diff for: Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: dockerui -p ":$PORT" -e "$DOCKER_ENDPOINT"

Diff for: src/dockerui

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
..

0 commit comments

Comments
 (0)