Merge pull request #147 from dockboard/dev
Remove 'ENV DEBIAN_FRONTEND noninteractive'
This commit is contained in:
		
						commit
						00ebb5019f
					
				|  | @ -1,29 +0,0 @@ | |||
| # Configs of the docker images, you might have specify your own configs here. | ||||
| # type of database, support 'mysql' and 'postgres' | ||||
| DB_TYPE="postgres" | ||||
| DB_PASSWORD="YOUR_DB_PASSWORD" | ||||
| DB_RUN_NAME="YOUR_DB_RUN_NAME" | ||||
| HOST_PORT="YOUR_HOST_PORT" | ||||
| 
 | ||||
| # Replace the database root password in database image Dockerfile. | ||||
| sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/$DB_TYPE/Dockerfile | ||||
| # Replace the database root password in gogits image deploy.sh file.  | ||||
| sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/gogits/deploy.sh | ||||
| # Replace the database type in gogits image deploy.sh file.  | ||||
| sed -i "s/THE_DB_TYPE/$DB_TYPE/g" images/gogits/deploy.sh | ||||
| 
 | ||||
| # Build the database image | ||||
| cd images/$DB_TYPE | ||||
| docker build -t gogs/$DB_TYPE . | ||||
| # | ||||
| ## Build the gogits image | ||||
| cd ../gogits | ||||
| docker build -t gogs/gogits . | ||||
| # | ||||
| ## Run MySQL image with name | ||||
| docker run -d --name $DB_RUN_NAME gogs/$DB_TYPE | ||||
| # | ||||
| ## Run gogits image and link it to the database image | ||||
| echo "Now we have the $DB_TYPE image(running) and gogs image, use the follow command to start gogs service:" | ||||
| echo -e "\033[33m docker run -i -t --link $DB_RUN_NAME:db -p $HOST_PORT:3000 gogs/gogits \033[0m" | ||||
| 
 | ||||
|  | @ -1,8 +1,6 @@ | |||
| FROM stackbrew/ubuntu:13.10 | ||||
| MAINTAINER  Meaglith Ma <genedna@gmail.com> (@genedna) | ||||
| 
 | ||||
| ENV DEBIAN_FRONTEND noninteractive | ||||
| 
 | ||||
| #aliyun#RUN echo "deb http://mirrors.aliyun.com/ubuntu/ saucy main restricted" > /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-updates main restricted" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy universe" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-updates universe" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-updates multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-backports main restricted universe multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-security main restricted" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-security universe" >> /etc/apt/sources.list && echo "deb http://mirrors.aliyun.com/ubuntu/ saucy-security multiverse" >> /etc/apt/sources.list | ||||
| 
 | ||||
| #nchc#RUN echo "deb http://free.nchc.org.tw/ubuntu/ saucy main restricted" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy main restricted" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-updates main restricted" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-updates main restricted" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy universe" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy universe" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-updates universe" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-updates universe" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy multiverse" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy multiverse" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-updates multiverse" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-updates multiverse" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-backports main restricted universe multiverse" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-backports main restricted universe multiverse" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-security main restricted" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-security main restricted" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-security universe" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-security universe" >> /etc/apt/source.list && echo "deb http://free.nchc.org.tw/ubuntu/ saucy-security multiverse" >> /etc/apt/source.list && echo "deb-src http://free.nchc.org.tw/ubuntu/ saucy-security multiverse" >> /etc/apt/source.list && echo "deb http://extras.ubuntu.com/ubuntu saucy main" >> /etc/apt/source.list && echo "deb-src http://extras.ubuntu.com/ubuntu saucy main" >> /etc/apt/source.list  | ||||
|  |  | |||
|  | @ -3,8 +3,6 @@ FROM ubuntu | |||
| # Set the file maintainer (your name - the file's author) | ||||
| MAINTAINER Borja Burgos <borja@tutum.co> | ||||
| 
 | ||||
| ENV DEBIAN_FRONTEND noninteractive | ||||
| 
 | ||||
| # Update the default application repository sources list | ||||
| RUN apt-get update | ||||
| 
 | ||||
|  |  | |||
|  | @ -3,8 +3,6 @@ | |||
| FROM   stackbrew/ubuntu:saucy | ||||
| MAINTAINER  Meaglith Ma <genedna@gmail.com> (@genedna) | ||||
| 
 | ||||
| ENV DEBIAN_FRONTEND noninteractive | ||||
| 
 | ||||
| RUN apt-get install -y --force-yes software-properties-common | ||||
| RUN add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" | ||||
| RUN apt-get --yes --force-yes update | ||||
|  |  | |||
|  | @ -1,8 +1,6 @@ | |||
| FROM ubuntu | ||||
| MAINTAINER SvenDowideit@docker.com | ||||
| 
 | ||||
| ENV DEBIAN_FRONTEND noninteractive | ||||
| 
 | ||||
| # Add the PostgreSQL PGP key to verify their Debian packages. | ||||
| # It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc  | ||||
| RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 | ||||
|  |  | |||
|  | @ -1,8 +1,6 @@ | |||
| FROM   	    stackbrew/ubuntu:saucy | ||||
| MAINTAINER  Meaglith Ma <genedna@gmail.com> (@genedna), Lance Ju <juzhenatpku@gmail.com> (@crystaldust) | ||||
| 
 | ||||
| ENV         DEBIAN_FRONTEND noninteractive | ||||
| 
 | ||||
| RUN         apt-get update && apt-get install -y redis-server | ||||
| # Usually redis doesn't need a password | ||||
| #RUN         sed -i "s/# requirepass foobared/requirepass THE_REDIS_PASSWORD/g" /etc/redis/redis.conf | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue