Other Issues
Why can't I launch the docker on my system?
When executing docker
, you may get a permission denied error. To solve this problem, you can either run docker
command with sudo
:
$ sudo docker cmd
or create a new group called "docker" and add current user into the group:
$ sudo groupadd docker $ sudo gpasswd -a $USER docker $ sudo service docker restart #If you are on Ubuntu 14.04-15.10, use docker.io instead: $ sudo service docker.io restart $ newgrp - docker $ docker cmd
Tips
To solve issues concerning docker, you may refer to docker guide.
Report an Issue
Please report all bugs and feature requests using our TEEX Rocket.Chat.
Feel free to ask questions and give feedback to .