summaryrefslogtreecommitdiffstats
path: root/dockerfiles
diff options
context:
space:
mode:
authorLance Ju <lance@crenolab.com>2014-04-16 00:57:50 +0800
committerLance Ju <lance@crenolab.com>2014-04-16 00:58:09 +0800
commit83283dfe37623e88c0df2f20eb5ae1edde9e646c (patch)
tree597607d5194fd3a365e4bd0b5548e7625bd4a377 /dockerfiles
parentf456f964ecdd5e01b3a54df09493a2e6adc35c09 (diff)
parenta4f070b828638fe74946299618495af7efe028a7 (diff)
downloadgitea-83283dfe37623e88c0df2f20eb5ae1edde9e646c.tar.gz
gitea-83283dfe37623e88c0df2f20eb5ae1edde9e646c.zip
Merge remote-tracking branch 'origin/master'
Add the support of postgres as the database. (Config the db in the build.sh file, make the DB_TYPE to 'postgres').
Diffstat (limited to 'dockerfiles')
-rw-r--r--dockerfiles/README.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/dockerfiles/README.md b/dockerfiles/README.md
index 4268c7c209..97c5aa0537 100644
--- a/dockerfiles/README.md
+++ b/dockerfiles/README.md
@@ -1,5 +1,39 @@
### Gogs Install With Docker
+Deply 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 confis:
+
+```
+MYSQL_PASSWORD="YOUR_MYSQL_PASSWORD"
+MYSQL_RUN_NAME="YOUR_MYSQL_RUN_NAME"
+HOST_PORT="YOUR_HOST_PORT"
+```
+
+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 gogs_mysql:db -p 3333:3000 gogs/gogits
+```
+
+Just follow the message, run:
+
+```
+ docker run -i -t --link gogs_mysql:db -p 3333:3000 gogs/gogits
+```
+
+Now we have gogs running! Open the browser and navigate to:
+
+```
+http://YOUR_HOST_IP:YOUR_HOST_PORT
+```
+
+Let's 'gogs'!
#### Gogs With MySQL