launcher_json/application/launcher_json.service

16 lines
402 B
SYSTEMD
Raw Normal View History

2023-09-30 00:04:41 +02:00
# systemd service, to start the app at the launch of the system and restart it if it crash
[Unit]
Description=Launcher_json Service
[Service]
# Non-root user
User=www-data
# Workspace directory
# Path to Reposilite executable/script and its configuration.
2023-09-30 00:18:24 +02:00
ExecStart=/usr/bin/docker run -p 8090:8080 --restart unless-stopped -d launcher_json
2023-09-30 00:04:41 +02:00
# Policy
Type=oneshot
2023-09-30 00:04:41 +02:00
[Install]
WantedBy=multi-user.target