1
0
mirror of https://github.com/tommytran732/Fedora-CoreOS-Ignition synced 2024-10-18 03:05:12 -04:00

Fix docker-compose-updater dependency

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-09-27 16:31:58 -07:00
parent 46f5a8070d
commit 7a207ba742
Signed by: Tomster
GPG Key ID: 555C902A34EC968F
2 changed files with 3 additions and 3 deletions

View File

@ -234,7 +234,7 @@
"name": "gvisor-updater.service"
},
{
"contents": "[Unit]\nDescription=Docker Compose Updater for /srv/%I\nAfter=network-online.target\nAfter=docker.service\nRequires=docker.service\n\n[Service]\nType=oneshot\nUser=root\nGroup=root\nWorkingDirectory=/srv/%i\nExecStart=/usr/bin/docker image prune -f -a --filter 'until=240h'\n#ExecStart=/usr/bin/git pull\nExecStart=/usr/bin/docker compose pull\nExecStart=/usr/bin/docker compose up -d\n",
"contents": "[Unit]\nDescription=Docker Compose Updater for /srv/%I\nRequires=network-online.target\nRequisite=docker.service\nAfter=network-online.target\nAfter=docker.service\n\n[Service]\nType=oneshot\nUser=root\nGroup=root\nWorkingDirectory=/srv/%i\nExecStart=/usr/bin/docker image prune -f -a --filter 'until=240h'\n#ExecStart=/usr/bin/git pull\nExecStart=/usr/bin/docker compose pull\nExecStart=/usr/bin/docker compose up -d\n",
"enabled": false,
"name": "docker-compose-updater@.service"
},

View File

@ -141,9 +141,9 @@ systemd:
[Unit]
Description=Docker Compose Updater for /srv/%I
Requires=network-online.target
Requires=gvisor-updater.service
Requisite=docker.service
After=network-online.target
After=gvisor-updater.service
After=docker.service
[Service]
Type=oneshot