Skip to content

Instantly share code, notes, and snippets.

@anoochit
Last active August 29, 2015 14:11
Show Gist options
  • Save anoochit/6cad2655cdd2bce16d7c to your computer and use it in GitHub Desktop.
Save anoochit/6cad2655cdd2bce16d7c to your computer and use it in GitHub Desktop.
wordpress.service
[Unit]
Description=WordPress
After=docker.service
[Service]
TimeoutStartSec=0
ExecStartPre=-/usr/bin/docker kill wordpress
ExecStartPre=-/usr/bin/docker rm wordpress
ExecStartPre=/usr/bin/docker pull tutum/wordpress
ExecStart=/usr/bin/docker run -P -d --name wordpress tutum/wordpress
ExecStop=/usr/bin/docker stop wordpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment