21 lines
842 B
Desktop File
21 lines
842 B
Desktop File
[Unit]
|
|
Description=mastodon-web.service
|
|
Wants=network-online.target
|
|
After=NetworkManager.service network.target network-online.target
|
|
RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage
|
|
|
|
# %E is "the XDG_CONFIG path"
|
|
|
|
[Service]
|
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
|
Restart=on-failure
|
|
TimeoutStopSec=70
|
|
ExecStart=/usr/bin/podman run -d --name mastodon-web --net external_network --net internal_network --restart always --env-file %h/live/.env.production --health-cmd "CMD-SHELL,wget -q --spider --proxy=off localhost:3000/health || exit 1" -p 127.0.0.1:3000:3000 -v %h/live/public/system:/mastodon/public/system localhost/jademoe bundle exec puma -C config/puma.rb
|
|
ExecStop=/usr/bin/podman stop mastodon-web
|
|
ExecStopPost=/usr/bin/podman rm mastodon-web
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=default.target
|