Signed-off-by: Michael Crosby <crosbymichael@gmail.com> (cherry picked from commit 5f4b9c0eab3978e491ff249aacffb2338bf2408a) Signed-off-by: Andrew Hsu <andrewhsu@docker.com> Upstream-commit: 89d78463660094d24878c9060d7ef45dddc7546b Component: packaging
22 lines
796 B
Desktop File
22 lines
796 B
Desktop File
[Unit]
|
|
Description=Docker Application Container Engine
|
|
Documentation=https://docs.docker.com
|
|
BindsTo=containerd.service
|
|
After=network-online.target firewalld.service
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
# Install containerd-shim-process if it's not already installed
|
|
ExecStartPre=/usr/libexec/containerd-offline-installer /var/lib/containerd-offline-installer/containerd-shim-process.tar docker.io/docker/containerd-shim-process
|
|
ExecStart=/usr/bin/dockerd
|
|
ExecStopPost=/usr/bin/dockerd post-stop
|
|
TimeoutSec=0
|
|
RestartSec=2
|
|
Restart=always
|
|
# On RPM Based distributions PATH isn't defined so we define it here
|
|
# /opt/containerd/bin is in front so dockerd grabs the correct runc binary
|
|
Environment="PATH=/opt/containerd/bin:/sbin:/usr/bin:/usr/local/bin:$PATH"
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|