Skip to content

Instantly share code, notes, and snippets.

@andromedarabbit
Last active October 10, 2016 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save andromedarabbit/75a0d065bff2db32da1921ff1cb624bb to your computer and use it in GitHub Desktop.
Save andromedarabbit/75a0d065bff2db32da1921ff1cb624bb to your computer and use it in GitHub Desktop.
Install docker-compose onto CoreOS
#!/bin/bash
# See https://github.com/docker/compose/releases
# See Also http://www.ericluwj.com/2015/10/20/installing-docker-compose-in-coreos.html
sudo mkdir -p /opt/bin && sudo chown core:core /opt/bin && curl -L https://github.com/docker/compose/releases/download/1.7.1/docker-compose-`uname -s`-`uname -m` > /opt/bin/docker-compose && chmod +x /opt/bin/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment