ensure userns is disabled and pass env file to docker container
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2020-03-22 16:47:48 +01:00
parent 8c20b0a285
commit 0ec9e4daa4
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,6 @@ After=docker.service network-online.target
[Service]
Type=oneshot
EnvironmentFile=/etc/sysconfig/tidy
ExecStartPre=/bin/sh -c '/usr/bin/docker ps | /bin/grep %p 1> /dev/null && /usr/bin/docker kill %p || true'
ExecStartPre=/bin/sh -c '/usr/bin/docker ps -a | /bin/grep %p 1> /dev/null && /usr/bin/docker rm %p || true'
@ -15,8 +14,10 @@ ExecStartPre=/usr/bin/docker pull {{ dockertidy_image }}
ExecStart=/usr/bin/docker run --rm \
--name %p \
--hostname %p \
--env-file /etc/sysconfig/tidy \
--volume {{ dockertidy_docker_socket_path }}:/var/run/docker.sock \
--privileged=true \
--userns=host \
{{ dockertidy_image }} \
[Install]