2
0
mirror of https://github.com/cmehay/pyentrypoint synced 2024-11-10 13:10:37 +00:00
This commit is contained in:
Christophe Mehay 2015-12-04 16:56:56 +01:00
parent 8a405b01bb
commit d46a273a12
2 changed files with 14 additions and 11 deletions

View File

@ -1,6 +1,19 @@
"""
Configuration
Configuration
"""
import fnmatch
import os
from grp import getgrnam
from io import open
from pwd import getpwnam
from six import string_types
from docker_links import DockerLinks
from pyyaml import Loader, load
class Link(object):
"""Link object"""

View File

@ -4,18 +4,8 @@
Smart docker-entrypoint
"""
import fnmatch
import os
from grp import getgrnam
from io import open
from pwd import getpwnam
from six import string_types
from twiggy import levels, log, quickSetup
from docker_links import DockerLinks
from pyyaml import Loader, load
from config import Config