Last active
December 11, 2016 16:45
-
-
Save scottslowe/dc3cadbfbfd3ae3ebe08 to your computer and use it in GitHub Desktop.
This systemd unit can be modified slightly (change the filename and the container name) to run multiple Docker containers across hosts in an etcd/fleet cluster.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Nginx web front-end | |
After=docker.service | |
Requires=docker.service | |
[Service] | |
TimeoutStartSec=0 | |
ExecStartPre=/usr/bin/docker pull nginx | |
ExecStart=/usr/bin/docker run --rm --name nginx-01 -p 80:80 nginx | |
ExecStop=/usr/bin/docker stop nginx-01 | |
[X-Fleet] | |
X-Conflicts=nginx.*.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment