You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Richard Shih 2a4ae3e48d 修正initial script file execute permission 6 years ago
wildfly_base 修正initial script file execute permission 6 years ago
wildfly_tml 修正initial script file execute permission 6 years ago
wildfly_tml_khhw 修正initial script file execute permission 6 years ago
wildfly_tml_txgw 調整initial script file permission 6 years ago
.DS_Store daily commit 6 years ago
README.md 加入TXGW configuration 6 years ago
buildImage.sh changes for TML UAT Environment 6 years ago
cleanImage.sh changes for TML UAT Environment 6 years ago

README.md

tml-in-docker

Dockerized TML Web System

安裝Docker

$ wget -qO- https://get.docker.com/ | sh
$ sudo usermod -aG docker $(whoami)
$ sudo systemctl enable docker.service
$ sudo systemctl start docker.service

安裝Docker Compose

$ sudo yum install epel-release
$ sudo yum install -y python-pip
$ sudo pip install docker-compose

安裝Rancher CLI

curl -LkSs https://github.com/rancher/cli/releases/download/v0.6.11/rancher-linux-amd64-v0.6.11.tar.gz | tar -xz && mv ./rancher-v0.6.11/rancher /bin/rancher && rm -rf ./rancher-v0.6.11

由Private register移除Docker Image

registry='localhost:5000'
name='my-image'
curl -v -sSL -X DELETE "http://${registry}/v2/${name}/manifests/$(
    curl -sSL -I \
        -H "Accept: application/vnd.docker.distribution.manifest.v2+json" \
        "http://${registry}/v2/${name}/manifests/$(
            curl -sSL "http://${registry}/v2/${name}/tags/list" | jq -r '.tags[0]'
        )" \
    | awk '$1 == "Docker-Content-Digest:" { print $2 }' \
    | tr -d $'\r' \
)"