Last active
February 18, 2016 07:10
-
-
Save aorjoa/460fece900140091e3a0 to your computer and use it in GitHub Desktop.
Docker not assigned port to container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@rack-5-node-201:~# docker run -d -p 8400:8400 -p 8500:8500 -p 8600:53/udp --net=host aiyara/consul agent -server -data-dir /data -bootstrap-expect 1 | |
80b222d676a17d751fceb33af371f911d1e306591091283fe717357edaaf247a | |
root@rack-5-node-201:~# docker ps | |
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES | |
80b222d676a1 aiyara/consul "/bin/consul agent -s" 2 seconds ago Up 1 seconds elegant_torvalds | |
root@rack-5-node-201:~# docker images | |
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE | |
docker-dev HEAD 1f493bc7f57f 26 hours ago 1.771 GB | |
<none> <none> 2c620bc9baf3 26 hours ago 1.626 GB | |
<none> <none> 4ce425aa4780 27 hours ago 1.626 GB | |
docker-dev master 59f7eea69c2d 28 hours ago 1.693 GB | |
<none> <none> 760118e78644 37 hours ago 1.026 GB | |
<none> <none> 61f789f619e6 37 hours ago 1.016 GB | |
docker-dev latest d3338d64d34f 39 hours ago 1.016 GB | |
<none> <none> 4dc8083433b4 41 hours ago 1.626 GB | |
aiyara/swarm latest 619d8f50a742 3 months ago 29.18 MB | |
aiyara/consul 0.5.2 ce6d4098bb84 3 months ago 36.14 MB | |
aiyara/consul latest ce6d4098bb84 3 months ago 36.14 MB | |
progrium/consul latest d9125e9e799b 7 months ago 69.43 MB | |
armv7/armhf-ubuntu 14.04 6f21efd1e2a9 11 months ago 238.9 MB | |
root@rack-5-node-201:~# docker run -d -p 8080:8080 armv7/armhf-ubuntu | |
Unable to find image 'armv7/armhf-ubuntu:latest' locally | |
^Croot@rack-5-node-201:~# docker run -d -p 8080:8080 armv7/armhf-ubuntu:14.04 | |
158af5c1dc66ce43399c5baabda4fb2dcf1062a361e7ee353a17e5005324e746 | |
root@rack-5-node-201:~# docker ps -a | |
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES | |
158af5c1dc66 armv7/armhf-ubuntu:14.04 "/bin/bash" 4 seconds ago Exited (0) 3 seconds ago elated_easley | |
80b222d676a1 aiyara/consul "/bin/consul agent -s" About a minute ago Up About a minute elegant_torvalds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment