Size: 555
Comment:
|
Size: 1146
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 10: | Line 10: |
== Open vSwitch and Multi == Open vSwitch, pre-Docker swarm: * [[http://www.openvswitch.org//support/dist-docs-2.5/INSTALL.Docker.md.html|How to Use Open vSwitch with Docker]] * [[https://goldmann.pl/blog/2014/01/21/connecting-docker-containers-on-multiple-hosts/|Connecting Docker containers on multiple hosts]] (old) == Stuff I never remember == === Inspect containers === {{{#!highlight sh numbers=off # Shell into a new copy of a container docker run -it --entrypoint=/bin/sh ${CONTAINER} # Shell into a running container docker exec -it ${container} /bin/sh }}} |
Docker
Presentation: Docker without Docker
systemd and docker
Running Docker containers with systemd: Describes interfacing systemd and docker directly, along with the systemd-docker wrapper.
Open vSwitch and Multi
Open vSwitch, pre-Docker swarm:
Stuff I never remember
Inspect containers
# Shell into a new copy of a container
docker run -it --entrypoint=/bin/sh ${CONTAINER}
# Shell into a running container
docker exec -it ${container} /bin/sh