2019-11-30 03:29:55 +00:00
|
|
|
# myNode Install Docker Images
|
|
|
|
# /etc/systemd/system/docker_images.service
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=myNode Install Docker Images
|
|
|
|
Wants=mynode.service
|
|
|
|
After=mynode.service
|
|
|
|
|
|
|
|
[Service]
|
2020-02-23 04:20:31 +00:00
|
|
|
Type=oneshot
|
2019-11-30 03:29:55 +00:00
|
|
|
ExecStart=/usr/bin/mynode_docker_images.sh
|
|
|
|
User=root
|
|
|
|
Group=root
|
|
|
|
StandardOutput=syslog
|
|
|
|
StandardError=syslog
|
|
|
|
SyslogIdentifier=mynode_docker_images
|
2020-02-23 04:20:31 +00:00
|
|
|
|
|
|
|
RestartSec=30
|
|
|
|
RemainAfterExit=yes
|
2019-11-30 03:29:55 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|