A community driven list of useful Docker links
Try Docker online
- Docker — Try Docker online
Docker repositories
A list of useful Docker containers
- Docker Image for Graphite - Graphite & Statsd can be a pain in the ass to setup. This Docker image will help you get up & running quickly.
- phusion/baseimage-docker - A docker ubuntu 14.04 baseimage done right.
- ZNC with Docker - Run the ZNC irc bouncer on Docker
Great slides about Docker
Share folder in container
via shell:
$ docker run -v /path/to/code:/src \
-i -t image /bin/bash
via dockerfile:
FROM busybox
VOLUME ["/var/volume1", "/var/volume2"]
CMD ["/bin/true"]
Linked Containes
use --link postgresql:pg
docker build -t postgresql .
docker run -rm -p --name pg postgresql
docker run -rm -t -i --link pg:pg postgresql bash
psql -h pg -d docker -U docker --password
Port forwarding intro a container
in boot2docker:
ssh -L 8000:localhost:8000
Your contributions are always welcome! Please submit a pull request or create an issue to add to the list. 👍
This work is licensed under a Creative Commons Attribution 4.0 International License.