관리-도구
편집 파일: kivis-build
#!/bin/bash # # Builds the linuxki Docker image which is used by kivis-start and kivis-stop. # We pass along the proxy environment variables during the build. This makes # the image less portable then it otherwise would be but is required to support # building the image with versions of Docker before 17.07. For Docker versions # 17.07 and later, users are recommended to configure the Docker client to pass # the variables to containers automatically, as documented at # https://docs.docker.com/network/proxy/. cd /opt/linuxki docker build \ --tag linuxki \ --build-arg http_proxy=$http_proxy \ --build-arg https_proxy=$https_proxy \ --build-arg HTTP_PROXY=$HTTP_PROXY \ --build-arg HTTPS_PROXY=$HTTPS_PROXY \ .