Systemd example file
This commit is contained in:
parent
bd417b1efa
commit
b28ccc13ea
25
doc/docker-hellomicronaut.service
Normal file
25
doc/docker-hellomicronaut.service
Normal file
|
@ -0,0 +1,25 @@
|
|||
#
|
||||
# Example systemd service file for running container
|
||||
#
|
||||
# Install into /etc/systemd/system/docker-hellomicronaut.service
|
||||
# systemctl daemon-reload
|
||||
# systemctl enable docker-hellomicronaut.service
|
||||
# systemctl start docker-hellomicronaut.service
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=Hellomicronaut Container
|
||||
After=docker.service
|
||||
Requires=docker.service
|
||||
User=nobody
|
||||
|
||||
[Service]
|
||||
TimeoutStartSec=0
|
||||
Restart=always
|
||||
ExecStartPre=-/usr/bin/docker stop %n
|
||||
#ExecStartPre=-/usr/bin/docker rm %n
|
||||
#ExecStartPre=/usr/bin/docker pull redis
|
||||
ExecStart=/usr/bin/docker run --rm --name %n --publish 8080:8080 hellomicronaut
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in a new issue