diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 351b1de..9b5621c 100755 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.9 -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/alpine/Dockerfile-coreutils b/alpine/Dockerfile-coreutils index 64fbaeb..39aa72c 100755 --- a/alpine/Dockerfile-coreutils +++ b/alpine/Dockerfile-coreutils @@ -1,5 +1,5 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apk add --update coreutils && rm -rf /var/cache/apk/* diff --git a/alpine/Dockerfile-glibc b/alpine/Dockerfile-glibc index 57bb123..f2b9ed3 100755 --- a/alpine/Dockerfile-glibc +++ b/alpine/Dockerfile-glibc @@ -1,6 +1,6 @@ FROM frolvlad/alpine-glibc:alpine-3.9_glibc-2.28 -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/alpine/README.md b/alpine/README.md index 49c70f6..1c2b2e8 100644 --- a/alpine/README.md +++ b/alpine/README.md @@ -22,11 +22,11 @@ docker pull registry.cn-hangzhou.aliyuncs.com/kennylee/alpine:3.4 ## 参考构建命令 ``` -docker build -t kennylee26/alpine . +docker build -t kennylee/alpine . -docker build -t kennylee26/alpine:coreutils -f Dockerfile-coreutils . +docker build -t kennylee/alpine:coreutils -f Dockerfile-coreutils . -docker build -t kennylee26/alpine:glibc -f Dockerfile-glibc . +docker build -t kennylee/alpine:glibc -f Dockerfile-glibc . ``` ## 版本说明 diff --git a/centos/7/Dockerfile b/centos/7/Dockerfile index b2bb931..3613334 100755 --- a/centos/7/Dockerfile +++ b/centos/7/Dockerfile @@ -1,6 +1,6 @@ FROM centos:7 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo diff --git a/centos/README.md b/centos/README.md index 94865f1..e321dc8 100644 --- a/centos/README.md +++ b/centos/README.md @@ -11,6 +11,6 @@ 参考构建命令 ``` -docker build -t kennylee26/centos . +docker build -t kennylee/centos . ``` diff --git a/ci-html/Dockerfile b/ci-html/Dockerfile index 604a28b..f4f19d9 100644 --- a/ci-html/Dockerfile +++ b/ci-html/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apk update && apk upgrade && \ apk add --no-cache git openssh diff --git a/consul/Dockerfile b/consul/Dockerfile index 2982227..4c015e7 100755 --- a/consul/Dockerfile +++ b/consul/Dockerfile @@ -1,7 +1,7 @@ # see also https://github.com/hashicorp/docker-consul FROM consul -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/debian/README.md b/debian/README.md index 0a72695..c59499d 100644 --- a/debian/README.md +++ b/debian/README.md @@ -13,6 +13,6 @@ 参考构建命令 ``` -docker build -t kennylee26/debian . +docker build -t kennylee/debian . ``` diff --git a/debian/buster/Dockerfile b/debian/buster/Dockerfile index 5d7afd6..f1af5c6 100755 --- a/debian/buster/Dockerfile +++ b/debian/buster/Dockerfile @@ -1,6 +1,6 @@ FROM debian:buster -MAINTAINER kennylee26 +MAINTAINER kennylee RUN cp /etc/apt/sources.list /etc/apt/sources.list.bak RUN sed -i 's#http://deb.debian.org#http://mirrors.163.com#g' /etc/apt/sources.list && \ diff --git a/debian/jessie/Dockerfile b/debian/jessie/Dockerfile index 1e57944..6c7e1a6 100755 --- a/debian/jessie/Dockerfile +++ b/debian/jessie/Dockerfile @@ -1,6 +1,6 @@ FROM debian:jessie -MAINTAINER kennylee26 +MAINTAINER kennylee RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak COPY jessie.sources.list /etc/apt/sources.list diff --git a/debian/stretch/Dockerfile b/debian/stretch/Dockerfile index 00ff16f..d70ed18 100755 --- a/debian/stretch/Dockerfile +++ b/debian/stretch/Dockerfile @@ -1,6 +1,6 @@ FROM debian:stretch -MAINTAINER kennylee26 +MAINTAINER kennylee RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak COPY stretch.sources.list /etc/apt/sources.list diff --git a/elasticsearch/es_crack/readme.md b/elasticsearch/es_crack/readme.md index 843dae7..6b82b24 100644 --- a/elasticsearch/es_crack/readme.md +++ b/elasticsearch/es_crack/readme.md @@ -2,6 +2,8 @@ 简要说明:直接构建即可把破解包传入到容器内,然后把修改后的合法License传入到es服务器即可。 +> 注:破解文件需要对应版本。 + ## License问题说明 目前license分为 _OPEN SOURCE(trial)_ 、 _BASIC_ 、 _GOLD_ 、 _PLATINUM_ 和 _ENTERPRISE_ ,其中免费的是前两个。[see also](https://www.elastic.co/subscriptions) diff --git a/etcd/Dockerfile b/etcd/Dockerfile index a60a40c..07705d2 100755 --- a/etcd/Dockerfile +++ b/etcd/Dockerfile @@ -1,7 +1,7 @@ # base on https://github.com/coreos/etcd FROM quay.io/coreos/etcd -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/etcd/README.md b/etcd/README.md index 9b133f2..ab25dee 100644 --- a/etcd/README.md +++ b/etcd/README.md @@ -24,6 +24,6 @@ Github: https://github.com/coreos/etcd 参考构建命令 ``` -docker build -t kennylee26/etcd . +docker build -t kennylee/etcd . ``` diff --git a/finalspeed-serv/Dockerfile b/finalspeed-serv/Dockerfile index 4afaa23..e2d363b 100755 --- a/finalspeed-serv/Dockerfile +++ b/finalspeed-serv/Dockerfile @@ -2,7 +2,7 @@ # NAME: kennylee26/fs-server # Pull base image. -FROM kennylee26/java7 +FROM kennylee/java7 # Basic Requirements RUN \ diff --git a/frp/Dockerfile b/frp/Dockerfile index 762108d..2305dc2 100755 --- a/frp/Dockerfile +++ b/frp/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu:xenial -MAINTAINER kennylee26 +MAINTAINER kennylee # Define working directory. WORKDIR /data diff --git a/git/Dockerfile b/git/Dockerfile index 39222f8..8bb656b 100755 --- a/git/Dockerfile +++ b/git/Dockerfile @@ -1,6 +1,6 @@ FROM alpine/git -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/gitbook/Dockerfile b/gitbook/Dockerfile index 405e73b..de99192 100755 --- a/gitbook/Dockerfile +++ b/gitbook/Dockerfile @@ -1,5 +1,5 @@ # Gitbook -# NAME: kennylee26/gitbook +# NAME: kennylee/gitbook # Pull base image. FROM registry.cn-hangzhou.aliyuncs.com/kennylee/node:12.2-stretch diff --git a/gitbook/README.md b/gitbook/README.md index 35ae166..d2d3041 100755 --- a/gitbook/README.md +++ b/gitbook/README.md @@ -4,7 +4,7 @@ ## 构建命令 -docker build -t kennylee26/gitbook . +docker build -t kennylee/gitbook . ### GIT_BOOK_VERSION @@ -41,20 +41,20 @@ GIT_BOOK_VERSION指的是gitbook版本,`latest` 为官网定义的稳定版本 ## 使用教程 首先下载镜像 -docker pull kennylee26/gitbook +docker pull kennylee/gitbook ### init -docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee26/gitbook init +docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee/gitbook init ### serve -docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee26/gitbook serve +docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee/gitbook serve ### build -docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee26/gitbook build +docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee/gitbook build For short, you can use alias for the long command line text. Just place the alias statement in your .bashrc or .zshrc. -alias gitbook='docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee26/gitbook' +alias gitbook='docker run --rm -v "$PWD:/gitbook" -p 4000:4000 kennylee/gitbook' 设置别名后,直接 `gitbook build` 即可 diff --git a/gitlab-runner/Dockerfile b/gitlab-runner/Dockerfile index 367ce72..d9463f2 100755 --- a/gitlab-runner/Dockerfile +++ b/gitlab-runner/Dockerfile @@ -6,7 +6,7 @@ FROM sameersbn/gitlab-ci-multi-runner # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list RUN apt-get update && \ diff --git a/gitlab/Dockerfile b/gitlab/Dockerfile index 40b29e5..eeebdea 100644 --- a/gitlab/Dockerfile +++ b/gitlab/Dockerfile @@ -1,6 +1,6 @@ FROM gitlab/gitlab-ce:10.8.3-ce.0 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV TZ=Asia/Shanghai diff --git a/gollum/Dockerfile b/gollum/Dockerfile index 90db3e3..9916f90 100644 --- a/gollum/Dockerfile +++ b/gollum/Dockerfile @@ -1,7 +1,7 @@ # Gollum FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ruby:2.6-stretch -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get -y install libicu-dev && \ diff --git a/gradle-node/Dockerfile b/gradle-node/Dockerfile index caacdba..4b404eb 100644 --- a/gradle-node/Dockerfile +++ b/gradle-node/Dockerfile @@ -1,7 +1,7 @@ # alpine环境下编译node实在太慢,所以以这个为基础镜像比较划算了。 FROM node:12-alpine -MAINTAINER kennylee26 +MAINTAINER kennylee ENV ALPINE_VERSION 3.9 # 使用阿里云镜像 diff --git a/healthcheck/Dockerfile b/healthcheck/Dockerfile index 830fe99..7fbae31 100755 --- a/healthcheck/Dockerfile +++ b/healthcheck/Dockerfile @@ -1,6 +1,6 @@ FROM python -MAINTAINER kennylee26 +MAINTAINER kennylee COPY docker-entrypoint.py / COPY heath_check.py / diff --git a/http-proxy/Dockerfile b/http-proxy/Dockerfile index b1c0e0f..a53c57d 100755 --- a/http-proxy/Dockerfile +++ b/http-proxy/Dockerfile @@ -9,7 +9,7 @@ FROM nginx:1.9.8 # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV EGINX_HOME=/etc/nginx diff --git a/java-nodejs/jdk7-node7/Dockerfile b/java-nodejs/jdk7-node7/Dockerfile index 187e1fa..a662c81 100755 --- a/java-nodejs/jdk7-node7/Dockerfile +++ b/java-nodejs/jdk7-node7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:openjdk-7-jdk -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -y python-software-properties software-properties-common diff --git a/java-nodejs/jdk8-node7/Dockerfile b/java-nodejs/jdk8-node7/Dockerfile index 4561859..989f856 100755 --- a/java-nodejs/jdk8-node7/Dockerfile +++ b/java-nodejs/jdk8-node7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:openjdk-8-jdk -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -y python-software-properties software-properties-common diff --git a/java/openjdk/alpine/8/jdk/Dockerfile b/java/openjdk/alpine/8/jdk/Dockerfile index a9a0d74..e512a61 100755 --- a/java/openjdk/alpine/8/jdk/Dockerfile +++ b/java/openjdk/alpine/8/jdk/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:8-alpine3.9 -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/java/openjdk/ubuntu/6/jdk/Dockerfile b/java/openjdk/ubuntu/6/jdk/Dockerfile index ed77a2a..6d392bc 100755 --- a/java/openjdk/ubuntu/6/jdk/Dockerfile +++ b/java/openjdk/ubuntu/6/jdk/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu:trusty -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/openjdk/ubuntu/6/jre/Dockerfile b/java/openjdk/ubuntu/6/jre/Dockerfile index b69c5fd..0072cbc 100755 --- a/java/openjdk/ubuntu/6/jre/Dockerfile +++ b/java/openjdk/ubuntu/6/jre/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu:trusty -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/openjdk/ubuntu/7/jdk/Dockerfile b/java/openjdk/ubuntu/7/jdk/Dockerfile index 01ecd1f..df8daf9 100755 --- a/java/openjdk/ubuntu/7/jdk/Dockerfile +++ b/java/openjdk/ubuntu/7/jdk/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu:trusty -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/openjdk/ubuntu/7/jre/Dockerfile b/java/openjdk/ubuntu/7/jre/Dockerfile index 294b5ce..d4949a9 100755 --- a/java/openjdk/ubuntu/7/jre/Dockerfile +++ b/java/openjdk/ubuntu/7/jre/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu:trusty -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/openjdk/ubuntu/8/jdk/Dockerfile b/java/openjdk/ubuntu/8/jdk/Dockerfile index 25df00f..fd0ccdc 100755 --- a/java/openjdk/ubuntu/8/jdk/Dockerfile +++ b/java/openjdk/ubuntu/8/jdk/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/openjdk/ubuntu/8/jre/Dockerfile b/java/openjdk/ubuntu/8/jre/Dockerfile index 6db4b0f..bbbdff3 100755 --- a/java/openjdk/ubuntu/8/jre/Dockerfile +++ b/java/openjdk/ubuntu/8/jre/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/openjdk/ubuntu/8/jre/Dockerfile-python b/java/openjdk/ubuntu/8/jre/Dockerfile-python index 3551e4a..09cf6a0 100755 --- a/java/openjdk/ubuntu/8/jre/Dockerfile-python +++ b/java/openjdk/ubuntu/8/jre/Dockerfile-python @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/python:python-ppa -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/oraclejava-python/8/Dockerfile b/java/oraclejava-python/8/Dockerfile index 5730325..792e9a6 100755 --- a/java/oraclejava-python/8/Dockerfile +++ b/java/oraclejava-python/8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/python:python-ppa -MAINTAINER kennylee26 +MAINTAINER kennylee # Install Java. RUN \ diff --git a/java/serverjre/alpine/7/jre/Dockerfile b/java/serverjre/alpine/7/jre/Dockerfile index 45f6ba9..d4d8610 100755 --- a/java/serverjre/alpine/7/jre/Dockerfile +++ b/java/serverjre/alpine/7/jre/Dockerfile @@ -1,6 +1,6 @@ FROM anapsix/alpine-java:7_server-jre -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/java/serverjre/alpine/8/jre/Dockerfile b/java/serverjre/alpine/8/jre/Dockerfile index 5e99ec3..c4e101c 100755 --- a/java/serverjre/alpine/8/jre/Dockerfile +++ b/java/serverjre/alpine/8/jre/Dockerfile @@ -1,6 +1,6 @@ FROM anapsix/alpine-java:8_server-jre -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/java/serverjre/centos/8/Dockerfile b/java/serverjre/centos/8/Dockerfile index a667eb3..010e9dc 100755 --- a/java/serverjre/centos/8/Dockerfile +++ b/java/serverjre/centos/8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/centos:7 -MAINTAINER kennylee26 +MAINTAINER kennylee # Java Version and other ENV ENV JAVA_VERSION_MAJOR=8 \ diff --git a/java/serverjre/ubuntu/8/Dockerfile b/java/serverjre/ubuntu/8/Dockerfile index 7518dae..686e8c4 100755 --- a/java/serverjre/ubuntu/8/Dockerfile +++ b/java/serverjre/ubuntu/8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu -MAINTAINER kennylee26 +MAINTAINER kennylee # 想要更新版本,需要手动去 Server JRE (Java SE Runtime Environment) 8 Downloads 下载页面下载一次才能知道URL # https://www.oracle.com/technetwork/java/javase/downloads/server-jre8-downloads-2133154.html diff --git a/jenkins/README.md b/jenkins/README.md index 259b4fb..8859e7b 100644 --- a/jenkins/README.md +++ b/jenkins/README.md @@ -23,7 +23,7 @@ ### 本地构建命令 ``` -docker build -t kennylee26/jenkins . +docker build -t kennylee/jenkins . ``` >注: jenkins安装插件比较痛苦,因为各种网络问题导致lugin安装不上。这时可以一个一个的下载到本地再进行安装。而一般jenkins升级后,插件也需要升级才能使用,所以不建议随便升级,等时间特别充裕再弄吧。 diff --git a/jetbrains-license-server/Dockerfile b/jetbrains-license-server/Dockerfile index d8758ba..a6fe4e2 100755 --- a/jetbrains-license-server/Dockerfile +++ b/jetbrains-license-server/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine -MAINTAINER kennylee26 +MAINTAINER kennylee ENV JETBRAINS_LICENSE_SERVER_VERSION v1.0.4 ENV HOME /root diff --git a/lts/lts-center/lts-admin/Dockerfile b/lts/lts-center/lts-admin/Dockerfile index 6821011..8329306 100755 --- a/lts/lts-center/lts-admin/Dockerfile +++ b/lts/lts-center/lts-admin/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/tomcat:tomcat8-jre8 -MAINTAINER kennylee26 +MAINTAINER kennylee COPY ./app/lts-admin/ ${CATALINA_HOME}/webapps/ROOT/ diff --git a/lts/lts-center/lts-jobtracker/Dockerfile b/lts/lts-center/lts-jobtracker/Dockerfile index 71d4a7c..63a6c27 100755 --- a/lts/lts-center/lts-jobtracker/Dockerfile +++ b/lts/lts-center/lts-jobtracker/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:openjdk-8-jre -MAINTAINER kennylee26 +MAINTAINER kennylee COPY ./app/lts-jobtracker.jar /data/app/lts-jobtracker.jar diff --git a/lts/lts-tasktracker/Dockerfile b/lts/lts-tasktracker/Dockerfile index 813cf4c..eb2a17b 100755 --- a/lts/lts-tasktracker/Dockerfile +++ b/lts/lts-tasktracker/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:openjdk-8-jre -MAINTAINER kennylee26 +MAINTAINER kennylee COPY ./app/lts-tasktracker.jar /data/app/lts-tasktracker.jar diff --git a/mariadb/10.2/Dockerfile b/mariadb/10.2/Dockerfile index 56c43f8..b0d2a43 100644 --- a/mariadb/10.2/Dockerfile +++ b/mariadb/10.2/Dockerfile @@ -1,5 +1,5 @@ FROM bitnami/mariadb:10.2 -MAINTAINER kennylee26 +MAINTAINER kennylee USER root @@ -29,4 +29,4 @@ RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \ dpkg-reconfigure --frontend noninteractive tzdata && \ dpkg-reconfigure --frontend noninteractive locales -USER 1001 \ No newline at end of file +USER 1001 diff --git a/mariadb/README.md b/mariadb/README.md index cccfba5..e94d926 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -17,7 +17,7 @@ 参考构建命令 ``` -docker build -t kennylee26/debian . +docker build -t kennylee/debian . ``` -see also: https://hub.docker.com/r/bitnami/mariadb \ No newline at end of file +see also: https://hub.docker.com/r/bitnami/mariadb diff --git a/mongo-db/image-build/Dockerfile b/mongo-db/image-build/Dockerfile index a141d0b..b8553ca 100755 --- a/mongo-db/image-build/Dockerfile +++ b/mongo-db/image-build/Dockerfile @@ -1,7 +1,7 @@ # see also: https://github.com/docker-library/mongo/blob/21869963911a74ccc13697c3ad50cdc23cc79b15/4.1/Dockerfil FROM mongo:4.1.1-xenial -MAINTAINER kennylee26 +MAINTAINER kennylee RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list diff --git a/mysql/Dockerfile b/mysql/Dockerfile index 289c7a2..e1631eb 100755 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -1,7 +1,7 @@ FROM mysql:5.7.25 # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak COPY stretch.sources.list /etc/apt/sources.list diff --git a/mysql/README.md b/mysql/README.md index cff8da5..78f67e2 100755 --- a/mysql/README.md +++ b/mysql/README.md @@ -27,7 +27,7 @@ docker pull registry.cn-hangzhou.aliyuncs.com/kennylee/mysql * build ``` -docker build -t kennylee26/mysql ./ +docker build -t kennylee/mysql ./ ``` ## MySQL主从同步(单向同步)实例 diff --git a/mysql/replication/master/Dockerfile b/mysql/replication/master/Dockerfile index 960aadc..6e1d7f1 100755 --- a/mysql/replication/master/Dockerfile +++ b/mysql/replication/master/Dockerfile @@ -1,7 +1,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/mysql:5.7 # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee COPY master-1.cnf /etc/mysql/conf.d/ COPY schema.sql /docker-entrypoint-initdb.d/schema.sql diff --git a/mysql/replication/slave-backup/Dockerfile b/mysql/replication/slave-backup/Dockerfile index fd0cfdc..1945c85 100755 --- a/mysql/replication/slave-backup/Dockerfile +++ b/mysql/replication/slave-backup/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/mysql:5.7 -MAINTAINER kennylee26 +MAINTAINER kennylee COPY salve-backup-1.cnf /etc/mysql/conf.d/ COPY schema.sql /docker-entrypoint-initdb.d/schema.sql diff --git a/nginx/alpine/image-build/Dockerfile b/nginx/alpine/image-build/Dockerfile index 4b8e3dd..7573942 100755 --- a/nginx/alpine/image-build/Dockerfile +++ b/nginx/alpine/image-build/Dockerfile @@ -3,7 +3,7 @@ # ##### FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine:3.4 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV NGINX_VERSION 1.13.0 diff --git a/nginx/debian/image-build/Dockerfile b/nginx/debian/image-build/Dockerfile index dec9a95..4fa640e 100755 --- a/nginx/debian/image-build/Dockerfile +++ b/nginx/debian/image-build/Dockerfile @@ -3,7 +3,7 @@ # ##### FROM registry.cn-hangzhou.aliyuncs.com/kennylee/debian:jessie -MAINTAINER kennylee26 +MAINTAINER kennylee ENV NGINX_VERSION 1.13.0-1~jessie ENV NJS_VERSION 1.13.0.0.1.10-1~jessie diff --git a/node-express/Dockerfile b/node-express/Dockerfile index 8c7b6de..20e3a58 100755 --- a/node-express/Dockerfile +++ b/node-express/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/node:alpine -MAINTAINER kennylee26 +MAINTAINER kennylee RUN mkdir /src RUN cnpm install express-generator nodemon -g diff --git a/node/Dockerfile b/node/Dockerfile index 9cb41d0..d3e9e77 100755 --- a/node/Dockerfile +++ b/node/Dockerfile @@ -1,6 +1,6 @@ FROM node:12.2-stretch -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -y curl git unzip vim wget && \ diff --git a/node/Dockerfile-alpine b/node/Dockerfile-alpine index 7e6f2e5..79bf7f5 100755 --- a/node/Dockerfile-alpine +++ b/node/Dockerfile-alpine @@ -1,6 +1,6 @@ FROM node:12.2-alpine -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/node/Dockerfile-slim b/node/Dockerfile-slim index 590d8d9..a2d2570 100755 --- a/node/Dockerfile-slim +++ b/node/Dockerfile-slim @@ -1,6 +1,6 @@ FROM node:12.2-stretch-slim -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -y curl git unzip vim wget && \ diff --git a/opencv/base/Dockerfile b/opencv/base/Dockerfile index 23c014f..e8f6671 100755 --- a/opencv/base/Dockerfile +++ b/opencv/base/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/python:python3 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV DEBIAN_FRONTEND=noninteractive diff --git a/opencv/java/openjdk-jdk8/Dockerfile b/opencv/java/openjdk-jdk8/Dockerfile index e699c6d..f5b8993 100755 --- a/opencv/java/openjdk-jdk8/Dockerfile +++ b/opencv/java/openjdk-jdk8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/python:python3 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV DEBIAN_FRONTEND=noninteractive diff --git a/opencv/python-dlib/Dockerfile b/opencv/python-dlib/Dockerfile index 476d23a..7dd7900 100755 --- a/opencv/python-dlib/Dockerfile +++ b/opencv/python-dlib/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/opencv -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends bzip2 && \ diff --git a/opencv/springboot/Dockerfile b/opencv/springboot/Dockerfile index 7039e6f..964ceae 100755 --- a/opencv/springboot/Dockerfile +++ b/opencv/springboot/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/opencv:openjdk-jdk8 -MAINTAINER kennylee26 +MAINTAINER kennylee COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh diff --git a/opencv/tomcat8/Dockerfile b/opencv/tomcat8/Dockerfile index f9a1700..1bc90eb 100755 --- a/opencv/tomcat8/Dockerfile +++ b/opencv/tomcat8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/opencv:openjdk-jdk8 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends pwgen ca-certificates && \ diff --git a/postgresql/10/Dockerfile b/postgresql/10/Dockerfile index 5abe57b..cb14b0b 100644 --- a/postgresql/10/Dockerfile +++ b/postgresql/10/Dockerfile @@ -1,5 +1,5 @@ FROM bitnami/postgresql:10.7.0 -MAINTAINER kennylee26 +MAINTAINER kennylee USER root @@ -29,4 +29,4 @@ RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \ dpkg-reconfigure --frontend noninteractive tzdata && \ dpkg-reconfigure --frontend noninteractive locales -USER 1001 \ No newline at end of file +USER 1001 diff --git a/postgresql/README.md b/postgresql/README.md index 3487485..534226d 100644 --- a/postgresql/README.md +++ b/postgresql/README.md @@ -17,7 +17,7 @@ 参考构建命令 ``` -docker build -t kennylee26/debian . +docker build -t kennylee/postgresql . ``` see also: https://hub.docker.com/r/bitnami/postgresql diff --git a/pure-ftpd/Dockerfile b/pure-ftpd/Dockerfile index bf10acb..1c881ef 100644 --- a/pure-ftpd/Dockerfile +++ b/pure-ftpd/Dockerfile @@ -1,7 +1,7 @@ # see also https://github.com/stilliard/docker-pure-ftpd FROM stilliard/pure-ftpd:stretch-latest -MAINTAINER kennylee26 +MAINTAINER kennylee RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak COPY stretch.sources.list /etc/apt/sources.list diff --git a/python/Dockerfile b/python/Dockerfile index 8491edd..82249cf 100755 --- a/python/Dockerfile +++ b/python/Dockerfile @@ -4,7 +4,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu -MAINTAINER kennylee26 +MAINTAINER kennylee RUN \ apt-get update && \ diff --git a/python/Dockerfile-flask b/python/Dockerfile-flask index eac8d08..c54829c 100755 --- a/python/Dockerfile-flask +++ b/python/Dockerfile-flask @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/python -MAINTAINER kennylee26 +MAINTAINER kennylee RUN pip install flask diff --git a/python/Dockerfile-ppa b/python/Dockerfile-ppa index 798deac..52125d1 100755 --- a/python/Dockerfile-ppa +++ b/python/Dockerfile-ppa @@ -4,7 +4,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/python3 -MAINTAINER kennylee26 +MAINTAINER kennylee # Install. RUN \ diff --git a/python/Dockerfile-python3-default b/python/Dockerfile-python3-default index 1751680..b26456e 100755 --- a/python/Dockerfile-python3-default +++ b/python/Dockerfile-python3-default @@ -4,7 +4,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu -MAINTAINER kennylee26 +MAINTAINER kennylee ENV PYTHON_VERSION 3.7 diff --git a/redmine-git-integration/Dockerfile b/redmine-git-integration/Dockerfile index c2753a7..de49607 100755 --- a/redmine-git-integration/Dockerfile +++ b/redmine-git-integration/Dockerfile @@ -1,13 +1,13 @@ # Redmine for advanced git integration # -# Authoer: kennylee26 +# Authoer: kennylee # Command format: Instruction [arguments command] .. # 第一行必须指定基于的基础镜像 -FROM kennylee26/ubuntu +FROM kennylee/ubuntu # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV GIT_HOME /home/git/ diff --git a/redmine-git-integration/README.txt b/redmine-git-integration/README.txt index 1f28a50..66efa7e 100755 --- a/redmine-git-integration/README.txt +++ b/redmine-git-integration/README.txt @@ -1,6 +1,6 @@ build -docker build -t kennylee26/redmine-git . +docker build -t kennylee/redmine-git . 说明: 与redmine集成,根据git/<项目名>这样的约定redmine项目中的Identifier进行匹配,并通过校验输入的用户与redmine上的用户组是否一致来判断下载用户是否有权限进行下载和上传。 diff --git a/redmine-git-integration/docker-compose.yml b/redmine-git-integration/docker-compose.yml index 95a23fd..b1c2b1a 100644 --- a/redmine-git-integration/docker-compose.yml +++ b/redmine-git-integration/docker-compose.yml @@ -1,5 +1,5 @@ app: - image: kennylee26/redmine-git + image: kennylee/redmine-git container_name: 'redmine-git' ports: - "8001:80" diff --git a/registry-frontend/Dockerfile b/registry-frontend/Dockerfile index 8390147..8c7a111 100755 --- a/registry-frontend/Dockerfile +++ b/registry-frontend/Dockerfile @@ -1,6 +1,6 @@ FROM konradkleine/docker-registry-frontend:v2 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak COPY jessie.sources.list /etc/apt/sources.list diff --git a/ruby/Dockerfile b/ruby/Dockerfile index ca9b8e2..a893aa6 100755 --- a/ruby/Dockerfile +++ b/ruby/Dockerfile @@ -5,7 +5,7 @@ # Pull base image. FROM ruby:2.6-stretch -MAINTAINER kennylee26 +MAINTAINER kennylee # FIX APT Resource RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak diff --git a/ruby/Dockerfile-alpine b/ruby/Dockerfile-alpine index ee1b72e..c5dd492 100755 --- a/ruby/Dockerfile-alpine +++ b/ruby/Dockerfile-alpine @@ -5,7 +5,7 @@ # Pull base image. FROM ruby:2.6-alpine -MAINTAINER kennylee26 +MAINTAINER kennylee # 使用阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories diff --git a/shadowsocks-libev/Dockerfile b/shadowsocks-libev/Dockerfile index ca41ba0..8798ef2 100755 --- a/shadowsocks-libev/Dockerfile +++ b/shadowsocks-libev/Dockerfile @@ -1,11 +1,11 @@ # shadowsocks-libev -# NAME: kennylee26/shadowsocks-libev +# NAME: kennylee/shadowsocks-libev # Pull base image. FROM ubuntu:14.04 # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee # resp RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list diff --git a/shadowsocks-libev/README.md b/shadowsocks-libev/README.md index 0566e47..e25be17 100755 --- a/shadowsocks-libev/README.md +++ b/shadowsocks-libev/README.md @@ -2,4 +2,4 @@ https://github.com/shadowsocks/shadowsocks-libev -docker build -t kennylee26/shadowsocks-libev . +docker build -t kennylee/shadowsocks-libev . diff --git a/siege/Dockerfile b/siege/Dockerfile index 7cd6b9b..60ac9e8 100755 --- a/siege/Dockerfile +++ b/siege/Dockerfile @@ -15,7 +15,7 @@ RUN apt-get update \ # ------------------------- container ------------------------- FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine:alpine-3.9_glibc -MAINTAINER kennylee26 +MAINTAINER kennylee COPY --from=builder /usr/local/bin/siege /usr/bin/siege COPY --from=builder /usr/local/bin/bombardment /usr/bin/bombardment diff --git a/siege/Dockerfile-python2 b/siege/Dockerfile-python2 index 78ef8f7..88f7450 100755 --- a/siege/Dockerfile-python2 +++ b/siege/Dockerfile-python2 @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/siege -MAINTAINER kennylee26 +MAINTAINER kennylee # --- install python, see also https://github.com/docker-library/python/tree/master/2.7/alpine3.9 diff --git a/springboot/image-build/Dockerfile-alpine b/springboot/image-build/Dockerfile-alpine index 6f7f686..f1e82ea 100755 --- a/springboot/image-build/Dockerfile-alpine +++ b/springboot/image-build/Dockerfile-alpine @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:alpine-serverjre8 -MAINTAINER kennylee26 +MAINTAINER kennylee COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh diff --git a/springboot/image-build/Dockerfile-ubuntu b/springboot/image-build/Dockerfile-ubuntu index 01b05ab..9eacb58 100755 --- a/springboot/image-build/Dockerfile-ubuntu +++ b/springboot/image-build/Dockerfile-ubuntu @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:openjdk-8-jre -MAINTAINER kennylee26 +MAINTAINER kennylee COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh diff --git a/springboot/image-build/wait-for-mysql/Dockerfile b/springboot/image-build/wait-for-mysql/Dockerfile index 1e2ca15..42ec28e 100755 --- a/springboot/image-build/wait-for-mysql/Dockerfile +++ b/springboot/image-build/wait-for-mysql/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/springboot:alpine-serverjre8 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apk --no-cache update && \ apk --no-cache add mysql-client && \ diff --git a/sshd-tomcat/tomcat8-java7-nodejs7/Dockerfile b/sshd-tomcat/tomcat8-java7-nodejs7/Dockerfile index ee163e6..e527235 100755 --- a/sshd-tomcat/tomcat8-java7-nodejs7/Dockerfile +++ b/sshd-tomcat/tomcat8-java7-nodejs7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/tomcat:tomcat8-jdk7-nodejs7 -MAINTAINER kennylee26 +MAINTAINER kennylee # Install. RUN \ diff --git a/sshd-tomcat/tomcat8-java7/Dockerfile b/sshd-tomcat/tomcat8-java7/Dockerfile index 5166a89..498e1df 100755 --- a/sshd-tomcat/tomcat8-java7/Dockerfile +++ b/sshd-tomcat/tomcat8-java7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/tomcat:tomcat8-jre7 -MAINTAINER kennylee26 +MAINTAINER kennylee # Install. RUN \ diff --git a/sshd-tomcat/tomcat8-java8-nodejs7/Dockerfile b/sshd-tomcat/tomcat8-java8-nodejs7/Dockerfile index 22c5565..6fb020b 100755 --- a/sshd-tomcat/tomcat8-java8-nodejs7/Dockerfile +++ b/sshd-tomcat/tomcat8-java8-nodejs7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/tomcat:tomcat8-jdk8-nodejs7 -MAINTAINER kennylee26 +MAINTAINER kennylee # Install. RUN \ diff --git a/sshd/Dockerfile b/sshd/Dockerfile index 5fd9bb4..9a6d41f 100755 --- a/sshd/Dockerfile +++ b/sshd/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/supervisord -MAINTAINER kennylee26 +MAINTAINER kennylee # Install. RUN \ diff --git a/supervisord/Dockerfile b/supervisord/Dockerfile index ffd1a3a..153ef26 100755 --- a/supervisord/Dockerfile +++ b/supervisord/Dockerfile @@ -5,7 +5,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/ubuntu -MAINTAINER kennylee26 +MAINTAINER kennylee # Install. RUN \ diff --git a/tnginx/alpine/image-build/Dockerfile b/tnginx/alpine/image-build/Dockerfile index 16573db..ae512e4 100755 --- a/tnginx/alpine/image-build/Dockerfile +++ b/tnginx/alpine/image-build/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/alpine:3.4 -MAINTAINER kennylee26 +MAINTAINER kennylee ENV TNGINX_VERSION 2.2.3 ENV TNGINX_URL=http://tengine.taobao.org/download/tengine-$TNGINX_VERSION.tar.gz diff --git a/tomcat/tomcat8-jdk7-nodejs7/Dockerfile b/tomcat/tomcat8-jdk7-nodejs7/Dockerfile index 7e6221a..1ad30e3 100755 --- a/tomcat/tomcat8-jdk7-nodejs7/Dockerfile +++ b/tomcat/tomcat8-jdk7-nodejs7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java-nodejs:java7-nodejs7 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends wget pwgen ca-certificates && \ diff --git a/tomcat/tomcat8-jdk8-nodejs7/Dockerfile b/tomcat/tomcat8-jdk8-nodejs7/Dockerfile index 4bdec80..f5c6d74 100755 --- a/tomcat/tomcat8-jdk8-nodejs7/Dockerfile +++ b/tomcat/tomcat8-jdk8-nodejs7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java-nodejs:java8-nodejs7 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends wget pwgen ca-certificates && \ diff --git a/tomcat/tomcat8-jdk8-python/Dockerfile b/tomcat/tomcat8-jdk8-python/Dockerfile index 4e724c1..af2e0e4 100755 --- a/tomcat/tomcat8-jdk8-python/Dockerfile +++ b/tomcat/tomcat8-jdk8-python/Dockerfile @@ -1,7 +1,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:oracle-java8-python # 维护者信息 -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends pwgen ca-certificates && \ diff --git a/tomcat/tomcat8-jre7/Dockerfile b/tomcat/tomcat8-jre7/Dockerfile index befeed1..97d2f73 100755 --- a/tomcat/tomcat8-jre7/Dockerfile +++ b/tomcat/tomcat8-jre7/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java:openjdk-7-jre -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends wget pwgen ca-certificates && \ diff --git a/tomcat/tomcat8-jre8/Dockerfile b/tomcat/tomcat8-jre8/Dockerfile index c09cb9d..c0d2326 100755 --- a/tomcat/tomcat8-jre8/Dockerfile +++ b/tomcat/tomcat8-jre8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends wget pwgen ca-certificates && \ diff --git a/tomcat/tomcat9-jre8/Dockerfile b/tomcat/tomcat9-jre8/Dockerfile index 497c42f..479010d 100755 --- a/tomcat/tomcat9-jre8/Dockerfile +++ b/tomcat/tomcat9-jre8/Dockerfile @@ -1,6 +1,6 @@ FROM registry.cn-hangzhou.aliyuncs.com/kennylee/java -MAINTAINER kennylee26 +MAINTAINER kennylee RUN apt-get update && \ apt-get install -yq --no-install-recommends wget pwgen ca-certificates && \ diff --git a/ubuntu/README.md b/ubuntu/README.md index 3a8de95..eb6acfd 100755 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -15,7 +15,7 @@ 参考构建命令 ``` -docker build -t kennylee26/ubuntu . +docker build -t kennylee/ubuntu . ``` diff --git a/ubuntu/bionic/Dockerfile b/ubuntu/bionic/Dockerfile index 24c0865..7e2338c 100755 --- a/ubuntu/bionic/Dockerfile +++ b/ubuntu/bionic/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:bionic -MAINTAINER kennylee26 +MAINTAINER kennylee RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list diff --git a/ubuntu/trusty/Dockerfile b/ubuntu/trusty/Dockerfile index 87f467f..71528a3 100755 --- a/ubuntu/trusty/Dockerfile +++ b/ubuntu/trusty/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:trusty -MAINTAINER kennylee26 +MAINTAINER kennylee RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list diff --git a/ubuntu/xenial/Dockerfile b/ubuntu/xenial/Dockerfile index 0f2eb53..af11b3f 100755 --- a/ubuntu/xenial/Dockerfile +++ b/ubuntu/xenial/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:xenial -MAINTAINER kennylee26 +MAINTAINER kennylee RUN sed -i 's/archive.ubuntu.com/mirrors.163.com/g' /etc/apt/sources.list diff --git a/weblogic/weblogic-domain/README.md b/weblogic/weblogic-domain/README.md index 5c8a231..304bfc0 100755 --- a/weblogic/weblogic-domain/README.md +++ b/weblogic/weblogic-domain/README.md @@ -13,13 +13,13 @@ fork for https://github.com/playniuniu/docker-weblogic-domain ``` # 构建基础镜像 -docker build -t kennylee26/weblogic-domain . +docker build -t kennylee/weblogic-domain . # 启动 AdminServer -docker run -d -p 8001:8001 --name=wlsadmin kennylee26/weblogic-domain startWebLogic.sh +docker run -d -p 8001:8001 --name=wlsadmin kennylee/weblogic-domain startWebLogic.sh -docker run -d --link wlsadmin:wlsadmin kennylee26/weblogic-domain startNodeManager.sh -docker run -d --link wlsadmin:wlsadmin kennylee26/weblogic-domain createMachine.sh -docker run -d --link wlsadmin:wlsadmin kennylee26/weblogic-domain createServer.sh +docker run -d --link wlsadmin:wlsadmin kennylee/weblogic-domain startNodeManager.sh +docker run -d --link wlsadmin:wlsadmin kennylee/weblogic-domain createMachine.sh +docker run -d --link wlsadmin:wlsadmin kennylee/weblogic-domain createServer.sh ``` 访问 http://127.0.0.1:8001/console diff --git a/weblogic/weblogic-domain/docker-compose.yml b/weblogic/weblogic-domain/docker-compose.yml index 8570a3c..4318fe3 100644 --- a/weblogic/weblogic-domain/docker-compose.yml +++ b/weblogic/weblogic-domain/docker-compose.yml @@ -6,7 +6,7 @@ networks: services: &admin adminserver: - image: &image kennylee26/weblogic-domain + image: &image kennylee/weblogic-domain container_name: wlsadmin ports: - "8001:8001"