From c8b81d8339fa81f3744fb177a373c490f81940bc Mon Sep 17 00:00:00 2001 From: Meaglith Ma Date: Wed, 9 Apr 2014 10:46:05 +0800 Subject: Create README.md --- dockerfiles/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 dockerfiles/README.md (limited to 'dockerfiles/README.md') diff --git a/dockerfiles/README.md b/dockerfiles/README.md new file mode 100644 index 00000000..d8278728 --- /dev/null +++ b/dockerfiles/README.md @@ -0,0 +1 @@ +== Gogs Install With Docker == -- cgit v1.2.3 From 4efb56af03bf8a113e9b39d123b9399e546d3505 Mon Sep 17 00:00:00 2001 From: Meaglith Ma Date: Wed, 9 Apr 2014 10:48:05 +0800 Subject: Update README.md --- dockerfiles/README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'dockerfiles/README.md') diff --git a/dockerfiles/README.md b/dockerfiles/README.md index d8278728..4268c7c2 100644 --- a/dockerfiles/README.md +++ b/dockerfiles/README.md @@ -1 +1,23 @@ -== Gogs Install With Docker == +### Gogs Install With Docker + + +#### Gogs With MySQL + + +#### Gogs With PostgreSQL + + +#### Gogs, MySQL With Redis + + +#### Gogs, MySQL With Memcached + + +#### Gogs, PostgreSQL With Redis + + +#### Gogs, PostgreSQL With Memcached + + + + -- cgit v1.2.3 From a4f070b828638fe74946299618495af7efe028a7 Mon Sep 17 00:00:00 2001 From: crystaldust Date: Fri, 11 Apr 2014 16:10:52 +0800 Subject: Update README.md Update the guide of how to deploy gogs in docker with the scripts. --- dockerfiles/README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'dockerfiles/README.md') diff --git a/dockerfiles/README.md b/dockerfiles/README.md index 4268c7c2..97c5aa05 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 -- cgit v1.2.3