Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active August 29, 2015 14:25
Show Gist options
  • Save hawkup/c3825fc6672f79e9abd4 to your computer and use it in GitHub Desktop.
Save hawkup/c3825fc6672f79e9abd4 to your computer and use it in GitHub Desktop.
Install Docker-Composer on Ubuntu
  • install Compose
curl -L https://github.com/docker/compose/releases/download/1.3.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
  • check version
docker-compose --version
# logs
# get log from running services
- docker-compose logs

# ps
# list containers
- docker-compose ps


reference: https://docs.docker.com/compose/install/

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