aboutsummaryrefslogtreecommitdiff
path: root/dockerfiles/README.md
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-04-11 12:16:17 -0400
committerUnknown <joe2010xtmf@163.com>2014-04-11 12:16:17 -0400
commitb26df298651018f5787a545c765856aed1cf94e4 (patch)
tree13a53b99bccbc1e4096b1639cad504d956c8bb03 /dockerfiles/README.md
parent23e318f85a912d84c5621eb0a8e09465bf37a3cb (diff)
parent0650c3c9f609ba833c29fa120a34f15c0f064b54 (diff)
Merge branch 'master' of github.com:gogits/gogs into dev
Diffstat (limited to 'dockerfiles/README.md')
-rw-r--r--dockerfiles/README.md57
1 files changed, 57 insertions, 0 deletions
diff --git a/dockerfiles/README.md b/dockerfiles/README.md
new file mode 100644
index 00000000..97c5aa05
--- /dev/null
+++ b/dockerfiles/README.md
@@ -0,0 +1,57 @@
+### 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
+
+
+#### Gogs With PostgreSQL
+
+
+#### Gogs, MySQL With Redis
+
+
+#### Gogs, MySQL With Memcached
+
+
+#### Gogs, PostgreSQL With Redis
+
+
+#### Gogs, PostgreSQL With Memcached
+
+
+
+