Use tmp path for docker socket file by default

This commit is contained in:
Einar Forselv 2019-04-13 20:19:49 +02:00
parent 600b1a4392
commit d9d6b5922a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import os
import docker
import json
DOCKER_BASE_URL = os.environ.get('DOCKER_BASE_URL') or "unix://var/run/docker.sock"
DOCKER_BASE_URL = os.environ.get('DOCKER_BASE_URL') or "unix://tmp/docker.sock"
VOLUME_TYPE_BIND = "bind"
VOLUME_TYPE_VOLUME = "volume"