Skip to content

Instantly share code, notes, and snippets.

@cpswan
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cpswan/7f9cdf49b5c9b1fc0c13 to your computer and use it in GitHub Desktop.
Save cpswan/7f9cdf49b5c9b1fc0c13 to your computer and use it in GitHub Desktop.
Upgrade Docker and restart running containers
#!/bin/bash
datenow=$(date +%s)
sudo docker ps > /tmp/docker."$datenow"
sudo apt-get update && sudo apt-get install -y lxc-docker
sudo docker start $(tail -n +2 /tmp/docker."$datenow" | cut -c1-12)
@sahilsk
Copy link

sahilsk commented Jul 2, 2015

cool..

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