From 84eab9855256ad1e4186508579e44cfcc9d295cb Mon Sep 17 00:00:00 2001 From: Octopus Octopus Date: Mon, 1 Apr 2024 19:36:50 -0500 Subject: [PATCH] fix volume not mounting anything --- mastodon-web.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon-web.service b/mastodon-web.service index 6969c54..406d8dc 100644 --- a/mastodon-web.service +++ b/mastodon-web.service @@ -10,7 +10,7 @@ RequiresMountsFor=/var/lib/containers/storage /var/run/containers/storage 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 localhost/jademoe bundle exec puma -C config/puma.rb +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