diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-08-31 15:11:55 +0800 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-08-31 15:11:55 +0800 |
commit | 7e36bf448db915250eb831a00b122fc1092df630 (patch) | |
tree | f3e590a542497efd1908109f752e7a03a8abeca4 /dockerfiles | |
parent | d78008b546b74d528629b79a7fee00b20f3437e2 (diff) | |
parent | 03c6a395aa0d32c99e8264d18a3b5228656478df (diff) |
Merge branch 'master' of github.com:gogits/gogs into dev
Conflicts:
dockerfiles/README.md
Diffstat (limited to 'dockerfiles')
-rw-r--r-- | dockerfiles/README.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dockerfiles/README.md b/dockerfiles/README.md new file mode 100644 index 00000000..11d28d0f --- /dev/null +++ b/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 patient. 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~ |