mynode/rootfs/standard/etc/systemd/system/webssh2.service

25 lines
523 B
SYSTEMD
Raw Normal View History

2019-11-23 04:27:35 +00:00
# WebSSH2 service
# /etc/systemd/system/webssh2.service
[Unit]
Description=WebSSH2
Wants=www.service mynode_docker_images.service
After=www.service mynode_docker_images.service
2019-11-23 04:27:35 +00:00
[Service]
WorkingDirectory=/opt/mynode/webssh2
ExecStart=/usr/bin/docker run --rm --name webssh2 -p 2222:2222 webssh2
2019-11-26 02:17:32 +00:00
ExecStop=/usr/bin/docker stop -t 2 webssh2
2019-11-23 04:27:35 +00:00
User=root
Group=root
Type=simple
TimeoutSec=240
Restart=always
RestartSec=60
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=webssh2
[Install]
WantedBy=multi-user.target