hpc-cloud/roles/cinder-storage/templates/cinder-storage.service

22 lines
491 B
Desktop File

[Unit]
Description=Openstack Cinder Storage container
After=docker.service
Requires=docker.service
[Service]
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker kill %n
ExecStartPre=-/usr/bin/docker rm %n
ExecStart=/usr/bin/docker run --name %n \
--privileged \
{{ env_vars | replace('\n', '') }} \
-v /srv/cinder-storage/root:/root \
-v "/dev":/dev \
-v "/var/lib/cinder:/var/lib/cinder" \
--network=host \
{{ docker_image }}
[Install]
WantedBy=multi-user.target