Skip to content

DockerOne-CN/awesome-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 

Repository files navigation

Awesome Docker

A community driven list of useful Docker links

Docker online

Try Docker online

  • Docker — Try Docker online

Docker Management UI

Use cases

Docker hub

Docker repositories

Interesting and Useful Docker containers

A list of useful Docker containers

Useful Docker Articles(Chinese Version)

Slides

Great slides about Docker

Commands

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

Contributing

Your contributions are always welcome! Please submit a pull request or create an issue to add to the list. 👍

License

Creative Commons License

This work is licensed under a Creative Commons Attribution 4.0 International License.

About

A community driven list of useful Docker links

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published