diff options
author | Matthew Jones <mat@matburt.net> | 2015-10-19 18:05:52 +0200 |
---|---|---|
committer | Matthew Jones <mat@matburt.net> | 2015-10-19 18:07:09 +0200 |
commit | 99da0965ef3cd9c929961f0e6d98d4c6f119a057 (patch) | |
tree | ecbd5cf243e4035982843386e0a7588769d388b4 /tools/docker-compose.yml | |
parent | Fix custom inventory scripts on org deletion (diff) | |
download | awx-99da0965ef3cd9c929961f0e6d98d4c6f119a057.tar.xz awx-99da0965ef3cd9c929961f0e6d98d4c6f119a057.zip |
Add a docker-ui container to the compose workflow
Diffstat (limited to 'tools/docker-compose.yml')
-rw-r--r-- | tools/docker-compose.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/docker-compose.yml b/tools/docker-compose.yml index e882ecd4d2..ebc81c2db6 100644 --- a/tools/docker-compose.yml +++ b/tools/docker-compose.yml @@ -20,4 +20,11 @@ redis: mongo: image: mongo:3.0 # ports: - # - 27017:27017
\ No newline at end of file + # - 27017:27017 +dockerui: + image: dockerui/dockerui + ports: + - "9000:9000" + privileged: true + volumes: + - /var/run/docker.sock:/var/run/docker.sock |