mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
25 lines
523 B
Desktop File
25 lines
523 B
Desktop File
# WebSSH2 service
|
|
# /etc/systemd/system/webssh2.service
|
|
|
|
[Unit]
|
|
Description=WebSSH2
|
|
Wants=www.service mynode_docker_images.service
|
|
After=www.service mynode_docker_images.service
|
|
|
|
[Service]
|
|
WorkingDirectory=/opt/mynode/webssh2
|
|
ExecStart=/usr/bin/docker run --rm --name webssh2 -p 2222:2222 webssh2
|
|
ExecStop=/usr/bin/docker stop -t 2 webssh2
|
|
|
|
User=root
|
|
Group=root
|
|
Type=simple
|
|
TimeoutSec=240
|
|
Restart=always
|
|
RestartSec=60
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=webssh2
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |