|
|
@ -1,13 +1,10 @@ |
|
|
|
import logging |
|
|
|
from operator import truediv |
|
|
|
from xml.dom import NoModificationAllowedErr |
|
|
|
import docker |
|
|
|
import time |
|
|
|
from os.path import join, isdir |
|
|
|
from os import getcwd, mkdir |
|
|
|
import os |
|
|
|
|
|
|
|
from ..exceptions import NonZeroRetcode, RunnerError, ConfigException |
|
|
|
from ..exceptions import RunnerError |
|
|
|
from ..config import ConfigHolder |
|
|
|
|
|
|
|
pipconf = """[global] |
|
|
@ -74,7 +71,7 @@ class PypiRepoRunner: |
|
|
|
if job_config.enabled: |
|
|
|
if not running: |
|
|
|
c = self.client.containers.run( |
|
|
|
name = job_config.container_name, |
|
|
|
name=job_config.container_name, |
|
|
|
image="pypiserver/pypiserver:latest", |
|
|
|
detach=True, |
|
|
|
labels={"app": "alice"}, |
|
|
@ -85,7 +82,7 @@ class PypiRepoRunner: |
|
|
|
"bind": "/data/packages", |
|
|
|
"mode": "rw" |
|
|
|
}, |
|
|
|
htpasswd_file:{ |
|
|
|
htpasswd_file: { |
|
|
|
"bind": "/data/.htpasswd", |
|
|
|
"mode": "ro" |
|
|
|
} |
|
|
|