summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcah <cah@ableton.com>2019-10-03 23:49:30 +0200
committercah <cah@ableton.com>2019-10-03 23:49:30 +0200
commit774a08e861a9f1a908a1f8c39c573885a102ad44 (patch)
tree37f9187246c486988febfe2d9ae10a1877ae79a1
parent577a4b14c908b7df2968e241dec102dcfceb378c (diff)
Fix naming of docker hub references.
-rwxr-xr-xcdist2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdist b/cdist
index d6b241f..bf478d2 100755
--- a/cdist
+++ b/cdist
@@ -525,7 +525,7 @@ class DockerTarget(Target):
tag = self.image
if config.has('docker_hub_repository'):
- tag = '%s/%s' % (config.get('docker_hub_repository'), tag)
+ tag = '%s:%s' % (config.get('docker_hub_repository'), tag)
self.container = command_and_read('%s run -u %s %s -itd %s /bin/bash' % (config.docker(), getpass.getuser(), opts, tag)).read().strip()