diff options
| author | cah <cah@ableton.com> | 2019-10-03 23:49:30 +0200 |
|---|---|---|
| committer | cah <cah@ableton.com> | 2019-10-03 23:49:30 +0200 |
| commit | 774a08e861a9f1a908a1f8c39c573885a102ad44 (patch) | |
| tree | 37f9187246c486988febfe2d9ae10a1877ae79a1 | |
| parent | 577a4b14c908b7df2968e241dec102dcfceb378c (diff) | |
Fix naming of docker hub references.
| -rwxr-xr-x | cdist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |
