├── README.md ├── autogen ├── centos-6 │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── centos-7 │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── centos-centos6 │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── centos-centos7 │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── centos-latest │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── ubuntu-bionic │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── ubuntu-latest │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── ubuntu-precise │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG ├── ubuntu-trusty │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG └── ubuntu-xenial │ ├── Dockerfile │ ├── SOURCE-TAG │ └── TAG └── src ├── Dockerfile.in ├── autogen.sh ├── build-app └── platform ├── centos ├── VERSIONS ├── copy-app ├── install-app ├── install-deps └── move-app └── ubuntu ├── VERSIONS ├── copy-app ├── install-app ├── install-deps └── move-app /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/README.md -------------------------------------------------------------------------------- /autogen/centos-6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-6/Dockerfile -------------------------------------------------------------------------------- /autogen/centos-6/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | centos:6 2 | -------------------------------------------------------------------------------- /autogen/centos-6/TAG: -------------------------------------------------------------------------------- 1 | krallin/centos-tini:6 2 | -------------------------------------------------------------------------------- /autogen/centos-7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-7/Dockerfile -------------------------------------------------------------------------------- /autogen/centos-7/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | centos:7 2 | -------------------------------------------------------------------------------- /autogen/centos-7/TAG: -------------------------------------------------------------------------------- 1 | krallin/centos-tini:7 2 | -------------------------------------------------------------------------------- /autogen/centos-centos6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-centos6/Dockerfile -------------------------------------------------------------------------------- /autogen/centos-centos6/SOURCE-TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-centos6/SOURCE-TAG -------------------------------------------------------------------------------- /autogen/centos-centos6/TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-centos6/TAG -------------------------------------------------------------------------------- /autogen/centos-centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-centos7/Dockerfile -------------------------------------------------------------------------------- /autogen/centos-centos7/SOURCE-TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-centos7/SOURCE-TAG -------------------------------------------------------------------------------- /autogen/centos-centos7/TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-centos7/TAG -------------------------------------------------------------------------------- /autogen/centos-latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/centos-latest/Dockerfile -------------------------------------------------------------------------------- /autogen/centos-latest/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | centos:latest 2 | -------------------------------------------------------------------------------- /autogen/centos-latest/TAG: -------------------------------------------------------------------------------- 1 | krallin/centos-tini:latest 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-bionic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/ubuntu-bionic/Dockerfile -------------------------------------------------------------------------------- /autogen/ubuntu-bionic/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | ubuntu:bionic 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-bionic/TAG: -------------------------------------------------------------------------------- 1 | krallin/ubuntu-tini:bionic 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/ubuntu-latest/Dockerfile -------------------------------------------------------------------------------- /autogen/ubuntu-latest/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | ubuntu:latest 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-latest/TAG: -------------------------------------------------------------------------------- 1 | krallin/ubuntu-tini:latest 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-precise/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/ubuntu-precise/Dockerfile -------------------------------------------------------------------------------- /autogen/ubuntu-precise/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | ubuntu:precise 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-precise/TAG: -------------------------------------------------------------------------------- 1 | krallin/ubuntu-tini:precise 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-trusty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/ubuntu-trusty/Dockerfile -------------------------------------------------------------------------------- /autogen/ubuntu-trusty/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | ubuntu:trusty 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-trusty/TAG: -------------------------------------------------------------------------------- 1 | krallin/ubuntu-tini:trusty 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-xenial/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/autogen/ubuntu-xenial/Dockerfile -------------------------------------------------------------------------------- /autogen/ubuntu-xenial/SOURCE-TAG: -------------------------------------------------------------------------------- 1 | ubuntu:xenial 2 | -------------------------------------------------------------------------------- /autogen/ubuntu-xenial/TAG: -------------------------------------------------------------------------------- 1 | krallin/ubuntu-tini:xenial 2 | -------------------------------------------------------------------------------- /src/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/Dockerfile.in -------------------------------------------------------------------------------- /src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/autogen.sh -------------------------------------------------------------------------------- /src/build-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/build-app -------------------------------------------------------------------------------- /src/platform/centos/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/centos/VERSIONS -------------------------------------------------------------------------------- /src/platform/centos/copy-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/centos/copy-app -------------------------------------------------------------------------------- /src/platform/centos/install-app: -------------------------------------------------------------------------------- 1 | yum install -y /tmp/tini_release.rpm 2 | -------------------------------------------------------------------------------- /src/platform/centos/install-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/centos/install-deps -------------------------------------------------------------------------------- /src/platform/centos/move-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/centos/move-app -------------------------------------------------------------------------------- /src/platform/ubuntu/VERSIONS: -------------------------------------------------------------------------------- 1 | trusty 2 | precise 3 | xenial 4 | bionic 5 | latest 6 | -------------------------------------------------------------------------------- /src/platform/ubuntu/copy-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/ubuntu/copy-app -------------------------------------------------------------------------------- /src/platform/ubuntu/install-app: -------------------------------------------------------------------------------- 1 | dpkg -i /tmp/tini_release.deb 2 | -------------------------------------------------------------------------------- /src/platform/ubuntu/install-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/ubuntu/install-deps -------------------------------------------------------------------------------- /src/platform/ubuntu/move-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krallin/tini-images/HEAD/src/platform/ubuntu/move-app --------------------------------------------------------------------------------