One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Stop all the containers:
docker stop `docker ps -q`
Remove all the containers:
docker rm `docker ps -aq`
Delete all unnamed/untagged images:
#!/usr/bin/env python | |
# Import any playlist (within the script) to Google Music All Access playlist. | |
# | |
# Based on Tim Hutt's script: | |
# https://gist.github.com/Timmmm/6572592 | |
# | |
# Instructions: | |
# 1. Write the playlist down to the file | |
# 2. Install `gmusicapi` using `pip`: `pip install gmusicapi` |
#! /usr/bin/python | |
""" PHP install script. Tested with ubuntu 12.10/14.04""" | |
import os | |
import argparse | |
parser = argparse.ArgumentParser(description='...') | |
parser.add_argument('prefix', nargs='?', default=False) | |
args = parser.parse_args() |