Skip to content

Instantly share code, notes, and snippets.

@RbkGh
Last active October 18, 2019 02:48
Show Gist options
  • Save RbkGh/c892fb71bf0668889c1f2c522a3c8d1c to your computer and use it in GitHub Desktop.
Save RbkGh/c892fb71bf0668889c1f2c522a3c8d1c to your computer and use it in GitHub Desktop.
#!/bin/bash
# install latest version of docker the lazy way
curl -sSL https://get.docker.com | sh
# make it so you don't need to sudo to run docker commands
usermod -aG docker ubuntu
# install docker-compose
curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
# copy the dockerfile into /srv/docker
# if you change this, change the systemd service file to match
# WorkingDirectory=[whatever you have below]
# mkdir /srv/docker
# curl -o /srv/docker/docker-compose.yml https://raw.githubusercontent.com/mikegcoleman/todo/master/docker-compose.yml
# copy in systemd unit file and register it so our compose file runs
# on system restart
curl -o /etc/systemd/system/docker-compose-app.service https://raw.githubusercontent.com/mikegcoleman/todo/master/docker-compose-app.service
systemctl enable docker-compose-app
# # start up the application via docker-compose
# docker-compose -f /srv/docker/docker-compose.yml up -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment