diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-07-26 00:24:27 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-07-26 00:24:27 -0400 |
commit | 8dd07c0ddd99ae626a1ec8c06f75f27fed51269f (patch) | |
tree | 261d3c9911dabc58c1ac54e4e36b3dee24d2032b /scripts | |
parent | 0a739cf9ac901f54484c34bba8322418dedb09b0 (diff) | |
download | gitea-8dd07c0ddd99ae626a1ec8c06f75f27fed51269f.tar.gz gitea-8dd07c0ddd99ae626a1ec8c06f75f27fed51269f.zip |
New UI merge in progress
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.sh | 22 | ||||
-rwxr-xr-x | scripts/build_linux64.sh | 22 | ||||
-rw-r--r-- | scripts/dockerfiles/README.md | 40 | ||||
-rwxr-xr-x | scripts/dockerfiles/build.sh | 77 | ||||
-rw-r--r-- | scripts/dockerfiles/images/gogits/Dockerfile | 32 | ||||
-rw-r--r-- | scripts/dockerfiles/images/gogits/deploy.sh | 60 | ||||
-rw-r--r-- | scripts/dockerfiles/images/memcache/.gitkeep | 0 | ||||
-rw-r--r-- | scripts/dockerfiles/images/memcache/Dockerfile | 24 | ||||
-rw-r--r-- | scripts/dockerfiles/images/mysql/.gitkeep | 0 | ||||
-rw-r--r-- | scripts/dockerfiles/images/mysql/Dockerfile | 35 | ||||
-rw-r--r-- | scripts/dockerfiles/images/postgres/.gitkeep | 0 | ||||
-rw-r--r-- | scripts/dockerfiles/images/postgres/Dockerfile | 50 | ||||
-rw-r--r-- | scripts/dockerfiles/images/redis/.gitkeep | 0 | ||||
-rw-r--r-- | scripts/dockerfiles/images/redis/Dockerfile | 10 | ||||
-rwxr-xr-x | scripts/dockerfiles/run.sh | 19 | ||||
-rwxr-xr-x | scripts/gogs_supervisord.sh | 42 | ||||
-rw-r--r-- | scripts/mysql.sql | 2 | ||||
-rw-r--r-- | scripts/start.bat | 2 | ||||
-rwxr-xr-x | scripts/start.sh | 15 |
19 files changed, 452 insertions, 0 deletions
diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100755 index 0000000000..0195947d62 --- /dev/null +++ b/scripts/build.sh @@ -0,0 +1,22 @@ +rm -rf output +mkdir output +go build +chmod +x gogs +mv gogs ./output/ +cp -r ./conf/ ./output/conf/ +cp -r ./custom/ ./output/custom/ +cp -r ./dockerfiles/ ./output/dockerfiles/ +cp -r ./public/ ./output/public/ +cp -r ./templates/ ./output/templates/ +cp bee.json ./output/ +cp cert.pem ./output/ +cp CONTRIBUTING.md ./output/ +cp gogs_supervisord.sh ./output/ +cp key.pem ./output/ +cp LICENSE ./output/ +cp README.md ./output/ +cp README_ZH.md ./output/ +cp rpp.ini ./output/ +cp start.bat ./output/ +cp start.sh ./output/ +cp wercker.yml ./output/ diff --git a/scripts/build_linux64.sh b/scripts/build_linux64.sh new file mode 100755 index 0000000000..f93cfc629e --- /dev/null +++ b/scripts/build_linux64.sh @@ -0,0 +1,22 @@ +rm -rf output_linux_64 +mkdir output_linux_64 +CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build +chmod +x gogs +mv gogs ./output_linux_64/ +cp -r ./conf/ ./output_linux_64/conf/ +cp -r ./custom/ ./output_linux_64/custom/ +cp -r ./dockerfiles/ ./output_linux_64/dockerfiles/ +cp -r ./public/ ./output_linux_64/public/ +cp -r ./templates/ ./output_linux_64/templates/ +cp bee.json ./output_linux_64/ +cp cert.pem ./output_linux_64/ +cp CONTRIBUTING.md ./output_linux_64/ +cp gogs_supervisord.sh ./output_linux_64/ +cp key.pem ./output_linux_64/ +cp LICENSE ./output_linux_64/ +cp README.md ./output_linux_64/ +cp README_ZH.md ./output_linux_64/ +cp rpp.ini ./output_linux_64/ +cp start.bat ./output_linux_64/ +cp start.sh ./output_linux_64/ +cp wercker.yml ./output_linux_64/
\ No newline at end of file diff --git a/scripts/dockerfiles/README.md b/scripts/dockerfiles/README.md new file mode 100644 index 0000000000..fc27bdf4f8 --- /dev/null +++ b/scripts/dockerfiles/README.md @@ -0,0 +1,40 @@ +### Install Gogs With Docker + +Deploying gogs in [Docker](http://www.docker.io/) is just as easy as eating a pie, what you do is just open the `dockerfiles/build.sh` file, replace the configs: + +``` +DB_TYPE="YOUR_DB_TYPE" # type of database, support 'mysql' and 'postgres' +MEM_TYPE="YOUR_MEM_TYPE" # type of memory database, support 'redis' and 'memcache' +DB_PASSWORD="YOUR_DB_PASSWORD" # The database password. +DB_RUN_NAME="YOUR_DB_RUN_NAME" # The --name option value when run the database image. +MEM_RUN_NAME="YOUR_MEM_RUN_NAME" # The --name option value when run the mem database image. +HOST_PORT="YOUR_HOST_PORT" # The port on host, which will be redirected to the port 3000 inside gogs container. +``` + +And run: +``` +cd dockerfiles +./build.sh +``` + +The build might take some time, just be paient. After it finishes, you will receive the message: + +``` +Now we have the MySQL image(running) and gogs image, use the follow command to start gogs service( the content might be different, according to your own configs): + docker run -i -t --link YOUR_DB_RUN_NAME:db --link YOUR_MEM_RUN_NAME:mem -p YOUR_HOST_PORT:3000 gogits/gogs +``` + +Just follow the message, run: + +``` + docker run -i -t --link YOUR_DB_RUN_NAME:db --link YOUR_MEM_RUN_NAME:mem -p YOUR_HOST_PORT:3000 gogits/gogs +``` + +Now we have gogs running! Open the browser and navigate to: + +``` +http://YOUR_HOST_IP:YOUR_HOST_PORT +``` + +Let's 'gogs'! +Ouya~ diff --git a/scripts/dockerfiles/build.sh b/scripts/dockerfiles/build.sh new file mode 100755 index 0000000000..4617da1421 --- /dev/null +++ b/scripts/dockerfiles/build.sh @@ -0,0 +1,77 @@ +# Configs of the docker images, you might have specify your own configs here. + +DB_TYPE="YOUR_DB_TYPE" # type of database, support 'mysql' and 'postgres' +MEM_TYPE="YOUR_MEM_TYPE" # type of memory database, support 'redis' and 'memcache' +DB_PASSWORD="YOUR_DB_PASSWORD" # The database password. +DB_RUN_NAME="YOUR_DB_RUN_NAME" # The --name option value when run the database image. +MEM_RUN_NAME="YOUR_MEM_RUN_NAME" # The --name option value when run the mem database image. +HOST_PORT="YOUR_HOST_PORT" # The port on host, which will be redirected to the port 3000 inside gogs container. + +# apt source, you can select 'nchc'(mirror in Taiwan) or 'aliyun'(best for mainlance China users) according to your network, if you could connect to the official unbunt mirror in a fast speed, just leave it to "". +APT_SOURCE="" + +# fail immediately if anything goes wrong +set -e + +DOCKER_BIN=$(which docker.io || which docker) +if [ -z "$DOCKER_BIN" ] ; then + echo "Please install docker. You can install docker by running \"wget -qO- https://get.docker.io/ | sh\"." + exit 1 +fi + +# 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 apt source in gogits image Dockerfile. +sed -i "s/#$APT_SOURCE#//" images/gogits/Dockerfile +# Uncomment the installation of database lib in gogs Dockerfile +sed -i "s/#$DB_TYPE#//" images/gogits/Dockerfile +# Replace the database type in gogits image deploy.sh file. +sed -i "s/THE_DB_TYPE/$DB_TYPE/g" images/gogits/deploy.sh + +if [ $MEM_TYPE != "" ] + then + # Replace the mem configs in deploy.sh + sed -i "s/THE_MEM_TYPE/$MEM_TYPE/g" images/gogits/deploy.sh + # Uncomment the installation of go mem lib + sed -i "s/#$MEM_TYPE#//" images/gogits/Dockerfile + + # Add the tags when get gogs + sed -i "s#RUN go get -u -d github.com/gogits/gogs#RUN go get -u -d -tags $MEM_TYPE github.com/gogits/gogs#g" images/gogits/Dockerfile + # Append the tag in gogs build + GOGS_BUILD_LINE=`awk '$0 ~ str{print NR}' str="go build" images/gogits/Dockerfile` + # Append the build tags + sed -i "${GOGS_BUILD_LINE}s/$/ -tags $MEM_TYPE/" images/gogits/Dockerfile + + cd images/$MEM_TYPE + $DOCKER_BIN build -t gogits/$MEM_TYPE . + $DOCKER_BIN run -d --name $MEM_RUN_NAME gogits/$MEM_TYPE + MEM_LINK=" --link $MEM_RUN_NAME:mem " + cd ../../ +fi + +# Build the database image +cd images/$DB_TYPE +$DOCKER_BIN build -t gogits/$DB_TYPE . +# + + +## Build the gogits image +cd ../gogits + +$DOCKER_BIN build -t gogits/gogs . + +#sed -i "s#RUN go get -u -tags $MEM_TYPE github.com/gogits/gogs#RUN go get -u github.com/gogits/gogs#g" Dockerfile + +# Remove the appended tags in go build line(if there is any) +sed -i "s/ -tags $MEM_TYPE//" Dockerfile + +# +## Run MySQL image with name +$DOCKER_BIN run -d --name $DB_RUN_NAME gogits/$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_BIN run -i -t --link $DB_RUN_NAME:db $MEM_LINK -p $HOST_PORT:3000 gogits/gogs \033[0m" + diff --git a/scripts/dockerfiles/images/gogits/Dockerfile b/scripts/dockerfiles/images/gogits/Dockerfile new file mode 100644 index 0000000000..a171e15e3b --- /dev/null +++ b/scripts/dockerfiles/images/gogits/Dockerfile @@ -0,0 +1,32 @@ +FROM stackbrew/ubuntu:13.10 +MAINTAINER Meaglith Ma <genedna@gmail.com> (@genedna) + +#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 + +RUN mkdir -p /go +ENV PATH /usr/local/go/bin:/go/bin:$PATH +ENV GOROOT /usr/local/go +ENV GOPATH /go + +RUN apt-get update && apt-get install --yes --force-yes curl git mercurial zip wget ca-certificates build-essential +RUN apt-get install -yq vim sudo + +RUN curl -sL https://golang.org/dl/go1.3.linux-amd64.tar.gz | tar -v -C /usr/local -xz +RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1 + +RUN go get -u -d github.com/gogits/gogs +RUN cd $GOPATH/src/github.com/gogits/gogs && git checkout dev && git pull origin dev && go install && go build -tags redis + +# Clean all the unused packages +RUN apt-get autoremove -y +RUN apt-get clean all + +# Add the deploy script to the docker image and assign execution permission to it. +ADD ./deploy.sh / +RUN chmod +x deploy.sh + +EXPOSE 3000 + +CMD /deploy.sh diff --git a/scripts/dockerfiles/images/gogits/deploy.sh b/scripts/dockerfiles/images/gogits/deploy.sh new file mode 100644 index 0000000000..9408524820 --- /dev/null +++ b/scripts/dockerfiles/images/gogits/deploy.sh @@ -0,0 +1,60 @@ +# deploy.sh in gogits image, replace the configs and run gogs + +## Replace the database password +DB_TYPE=THE_DB_TYPE +DB_PASSWORD=THE_DB_PASSWORD +DB_ALIAS=DB +MEM_TYPE=THE_MEM_TYPE + +DB_TYPE_LINE=`awk '$0 ~ str{print NR}' str="DB_TYPE = mysql" $GOPATH/src/github.com/gogits/gogs/conf/app.ini` +DB_PASSWORD_LINE=`awk '$0 ~ str{print NR+1}' str="USER = root" $GOPATH/src/github.com/gogits/gogs/conf/app.ini` + +sed -i "${DB_TYPE_LINE}s/.*$/DB_TYPE = $DB_TYPE/g" $GOPATH/src/github.com/gogits/gogs/conf/app.ini +sed -i "${DB_PASSWORD_LINE}s/.*$/PASSWD = $DB_PASSWORD/g" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + + + +if [ $MEM_TYPE != "" ] + then + MEM_HOST_LINE=`awk '$0 ~ str{print NR+6}' str="ADAPTER = memory" $GOPATH/src/github.com/gogits/gogs/conf/app.ini` + + _MEM_ADDR=`echo $MEM_PORT | cut -d '/' -f 3 | cut -d ':' -f 1` + _MEM_PORT=`echo $MEM_PORT | cut -d '/' -f 3 | cut -d ':' -f 2` + + # take advantage of memory db for adapter and provider + sed -i "s/ADAPTER = memory/ADAPTER = $MEM_TYPE/g" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + # Comment the memory interval since we don't use 'memory' as adapter + sed -i "s/INTERVAL = 60/;INTERVAL = 60/g" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + + + case $MEM_TYPE in + "redis") + # Modify the adapter host + sed -i "${MEM_HOST_LINE}s/.*/HOST = $_MEM_ADDR:$_MEM_PORT/" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + sed -i "s/PROVIDER = file/PROVIDER = $MEM_TYPE/g" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + # Modify the provider config + sed -i "s#PROVIDER_CONFIG = data/sessions#PROVIDER_CONFIG = $_MEM_ADDR:$_MEM_PORT#g" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + ;; + + "memcache") + # Modify the adapter host + sed -i "${MEM_HOST_LINE}s/.*/HOST = $_MEM_ADDR:$_MEM_PORT/" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + ;; + esac + +fi + + +## Replace the database address and port +# When using --link in docker run, the database image's info looks like this: +# DB_PORT=tcp://172.17.0.2:3306 +# DB_PORT_3306_TCP_PORT=3306 +# DB_PORT_3306_TCP_PROTO=tcp +# DB_PORT_3306_TCP_ADDR=172.17.0.2 +#sed -i "/HOST = 127.0.0.1:3306/c\HOST = $DB_PORT_3306_TCP_ADDR:$DB_PORT_3306_TCP_PORT" $GOPATH/src/github.com/gogits/gogs/conf/app.ini +sed -i "/HOST = 127.0.0.1:3306/c\HOST = `echo $DB_PORT | cut -d '/' -f 3`" $GOPATH/src/github.com/gogits/gogs/conf/app.ini + +cd $GOPATH/src/github.com/gogits/gogs/ + +# The sudo is a must here, or the go within docker container won't get the current user by os.Getenv("USERNAME") +sudo ./gogs web diff --git a/scripts/dockerfiles/images/memcache/.gitkeep b/scripts/dockerfiles/images/memcache/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/scripts/dockerfiles/images/memcache/.gitkeep diff --git a/scripts/dockerfiles/images/memcache/Dockerfile b/scripts/dockerfiles/images/memcache/Dockerfile new file mode 100644 index 0000000000..a1a2b6ee41 --- /dev/null +++ b/scripts/dockerfiles/images/memcache/Dockerfile @@ -0,0 +1,24 @@ +FROM ubuntu + +# Set the file maintainer (your name - the file's author) +MAINTAINER Borja Burgos <borja@tutum.co> + +# Update the default application repository sources list +RUN apt-get update + +# Install Memcached +RUN apt-get install -y memcached + +# Port to expose (default: 11211) +EXPOSE 11211 + +# Default Memcached run command arguments +# Change to limit memory when creating container in Tutum +CMD ["-m", "64"] + +# Set the user to run Memcached daemon +USER daemon + +# Set the entrypoint to memcached binary +ENTRYPOINT memcached + diff --git a/scripts/dockerfiles/images/mysql/.gitkeep b/scripts/dockerfiles/images/mysql/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/scripts/dockerfiles/images/mysql/.gitkeep diff --git a/scripts/dockerfiles/images/mysql/Dockerfile b/scripts/dockerfiles/images/mysql/Dockerfile new file mode 100644 index 0000000000..a9a72e35c4 --- /dev/null +++ b/scripts/dockerfiles/images/mysql/Dockerfile @@ -0,0 +1,35 @@ +#FROM stackbrew/ubuntu:13.10 +#FROM stackbrew/ubuntu +FROM stackbrew/ubuntu:saucy +MAINTAINER Meaglith Ma <genedna@gmail.com> (@genedna) + +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 +RUN apt-get --yes --force-yes upgrade + +ENV MYSQL_PASSWORD THE_DB_PASSWORD + +RUN echo "mysql-server mysql-server/root_password password $MYSQL_PASSWORD" | debconf-set-selections +RUN echo "mysql-server mysql-server/root_password_again password $MYSQL_PASSWORD" | debconf-set-selections + +RUN apt-get update && apt-get install -y --force-yes mysql-server +RUN sed -i -e"s/^bind-address\s*=\s*127.0.0.1/bind-address = 0.0.0.0/" /etc/mysql/my.cnf + +RUN service mysql restart + +RUN echo "mysql -uroot -p$MYSQL_PASSWORD -e 'drop database if exists gogs;'" >> import.sh +RUN echo "mysql -uroot -p$MYSQL_PASSWORD -e 'create database gogs;'" >> import.sh +RUN chmod +x import.sh + +RUN apt-get autoremove -y +RUN apt-get clean all + +RUN /usr/sbin/mysqld & \ + sleep 10s &&\ + echo "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '$MYSQL_PASSWORD' WITH GRANT OPTION; FLUSH PRIVILEGES" | mysql -p$MYSQL_PASSWORD &&\ + ./import.sh + +EXPOSE 3306 + +CMD ["/usr/bin/mysqld_safe", "--skip-syslog", "--log-error=/dev/null"] diff --git a/scripts/dockerfiles/images/postgres/.gitkeep b/scripts/dockerfiles/images/postgres/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/scripts/dockerfiles/images/postgres/.gitkeep diff --git a/scripts/dockerfiles/images/postgres/Dockerfile b/scripts/dockerfiles/images/postgres/Dockerfile new file mode 100644 index 0000000000..9d76873c98 --- /dev/null +++ b/scripts/dockerfiles/images/postgres/Dockerfile @@ -0,0 +1,50 @@ +FROM ubuntu +MAINTAINER SvenDowideit@docker.com + +# 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 + +# Add PostgreSQL's repository. It contains the most recent stable release +# of PostgreSQL, ``9.3``. +# See http://apt.postgresql.org/pub/repos/apt/README +RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list + +# Update the Ubuntu and PostgreSQL repository indexes +RUN apt-get update + +# Install ``python-software-properties``, ``software-properties-common`` and PostgreSQL 9.3 +# There are some warnings (in red) that show up during the build. You can hide +# them by prefixing each apt-get statement with DEBIAN_FRONTEND=noninteractive +RUN apt-get -y -q install python-software-properties software-properties-common +RUN apt-get -y -q install postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3 + +# Note: The official Debian and Ubuntu images automatically ``apt-get clean`` +# after each ``apt-get`` + +# Run the rest of the commands as the ``postgres`` user created by the ``postgres-9.3`` package when it was ``apt-get installed`` +USER postgres + +# Create a PostgreSQL role named ``docker`` with ``docker`` as the password and +# then create a database `docker` owned by the ``docker`` role. +# Note: here we use ``&&\`` to run commands one after the other - the ``\`` +# allows the RUN command to span multiple lines. +RUN /etc/init.d/postgresql start &&\ + psql --command "CREATE USER root WITH SUPERUSER PASSWORD 'THE_DB_PASSWORD';" &&\ + createdb -O root gogs + +# Adjust PostgreSQL configuration so that remote connections to the +# database are possible. +RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.3/main/pg_hba.conf + +# And add ``listen_addresses`` to ``/etc/postgresql/9.3/main/postgresql.conf`` +RUN echo "listen_addresses='*'" >> /etc/postgresql/9.3/main/postgresql.conf + +# Expose the PostgreSQL port +EXPOSE 5432 + +# Add VOLUMEs to allow backup of config, logs and databases +VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"] + +# Set the default command to run when starting the container +CMD ["/usr/lib/postgresql/9.3/bin/postgres", "-D", "/var/lib/postgresql/9.3/main", "-c", "config_file=/etc/postgresql/9.3/main/postgresql.conf"] diff --git a/scripts/dockerfiles/images/redis/.gitkeep b/scripts/dockerfiles/images/redis/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/scripts/dockerfiles/images/redis/.gitkeep diff --git a/scripts/dockerfiles/images/redis/Dockerfile b/scripts/dockerfiles/images/redis/Dockerfile new file mode 100644 index 0000000000..a5b948fb14 --- /dev/null +++ b/scripts/dockerfiles/images/redis/Dockerfile @@ -0,0 +1,10 @@ +FROM stackbrew/ubuntu:saucy +MAINTAINER Meaglith Ma <genedna@gmail.com> (@genedna), Lance Ju <juzhenatpku@gmail.com> (@crystaldust) + +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 +EXPOSE 6379 +ENTRYPOINT ["/usr/bin/redis-server"] +CMD ["--bind", "0.0.0.0"] + diff --git a/scripts/dockerfiles/run.sh b/scripts/dockerfiles/run.sh new file mode 100755 index 0000000000..cef2ebb81f --- /dev/null +++ b/scripts/dockerfiles/run.sh @@ -0,0 +1,19 @@ +# Configs +MYSQL_PASSWORD="kuajie8402" +MYSQL_RUN_NAME="gogs_mysql" +typeset -u MYSQL_ALIAS +MYSQL_ALIAS="db" +HOST_PORT="3000" + +DOCKER_BIN=$(which docker.io || which docker) +if [ -z "$DOCKER_BIN" ] ; then + echo "Please install docker. You can install docker by running \"wget -qO- https://get.docker.io/ | sh\"." + exit 1 +fi + +## Run MySQL image with name +$DOCKER_BIN run -d --name $MYSQL_RUN_NAME gogs/mysql +# +## Run gogits image and link it to the MySQL image +$DOCKER_BIN run --link $MYSQL_RUN_NAME:$MYSQL_ALIAS -p $HOST_PORT:3000 gogs/gogits + diff --git a/scripts/gogs_supervisord.sh b/scripts/gogs_supervisord.sh new file mode 100755 index 0000000000..3038407ed4 --- /dev/null +++ b/scripts/gogs_supervisord.sh @@ -0,0 +1,42 @@ +#!/bin/sh + +echo 'plase remember to modify the command path in etc/supervisord.conf(line 23)' + +PID="/tmp/supervisord.pid" +CONF="etc/supervisord.conf" + +LOGDIR="log" +if [ ! -d $LOGDIR ]; then + mkdir $LOGDIR +fi + +stop() { + if [ -f $PID ]; then + kill `cat -- $PID` + rm -f -- $PID + echo "stopped" + fi +} + +start() { + echo "starting" + if [ ! -f $PID ]; then + supervisord -c $CONF + echo "started" + fi +} + +case "$1" in + start) + start + ;; + stop) + stop + ;; + restart) + stop + start + ;; + *) + echo "Usage: $0 {start|stop|restart}" +esac
\ No newline at end of file diff --git a/scripts/mysql.sql b/scripts/mysql.sql new file mode 100644 index 0000000000..cacd76cf70 --- /dev/null +++ b/scripts/mysql.sql @@ -0,0 +1,2 @@ +DROP DATABASE IF EXISTS gogs; +CREATE DATABASE IF NOT EXISTS gogs CHARACTER SET utf8 COLLATE utf8_general_ci; diff --git a/scripts/start.bat b/scripts/start.bat new file mode 100644 index 0000000000..dfe84c0f85 --- /dev/null +++ b/scripts/start.bat @@ -0,0 +1,2 @@ +@echo off +..\\gogs.exe web diff --git a/scripts/start.sh b/scripts/start.sh new file mode 100755 index 0000000000..709a10265a --- /dev/null +++ b/scripts/start.sh @@ -0,0 +1,15 @@ +#!/bin/sh - +# Copyright 2014 The Gogs Authors. All rights reserved. +# Use of this source code is governed by a MIT-style +# license that can be found in the LICENSE file. +# +# start gogs web +# +IFS=' + ' +PATH=/bin:/usr/bin:/usr/local/bin +USER=$(whoami) +HOME=$(grep "^$USER:" /etc/passwd | cut -d: -f6) +export USER HOME PATH + +cd "$(dirname $0)" && exec ./gogs web |