Skip to content

Instantly share code, notes, and snippets.

@noteed
Last active December 24, 2015 23:48
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noteed/6882636 to your computer and use it in GitHub Desktop.
Save noteed/6882636 to your computer and use it in GitHub Desktop.
List of Docker things.

Docker things

  • quay.io (now acquired by CoreOS)
    • 5/10/20/50/125 private repositories for $12/$25/$50/$100/$200 (it was $7/$12/$22 for 5/10/20 repositories before) per month
    • unlimited public repositories
  • Reesd
    • 10GB/25GB/50GB for €20/€45/€80 per month
    • Illimited number of repositories/images/layers, only compressed layer space counts.
    • Disclaimer: it is a project of mine.
    • Now in beta :-)

Gone

Run Docker images

  • baremetal.io
  • ctl-c.io (gone, or part of centylink ?)
  • enginedock.com (gone)
  • orchardup.com (closing)
    • 0.5/1/2/4/8 GB for $10/$20/$40/$80/$160 per month, billed per hour (or $0.03 per GB per hour)
  • stackdock.com
    • 1GB Memory / 20GB SSD / 1 core / $5 per month
    • 4GB Memory / 60GB SSD / 2 cores / $25 per month
    • 12GB Memory / 100GB SSD / 4 cores / $100 per month
  • tutum.co

Open source PaaS

  • flynn.io
    • git push deployment
    • across cluster
  • shipyard-project.com
    • web interface
    • multi host
    • HTTP API

Multi-container tools

Other lists

Base images

There are various possibilities to create base images.

A possibility is to use Ubuntu Core with a simple Dockerfile:

FROM scratch
ADD ubuntu-core-13.10-core-amd64.tar.gz /

Various existing base images are already available. Reading the scripts to build them is interesting too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment