summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-07-26 00:25:43 -0400
committerUnknwon <joe2010xtmf@163.com>2014-07-26 00:25:43 -0400
commit3f38ff6c09f0497980ad13fda9803907cee6d612 (patch)
treed3a6c571a8b14ebe6cedf24c2e685d62604e100b /scripts
parent8dd07c0ddd99ae626a1ec8c06f75f27fed51269f (diff)
parent76f7ad45e6ad5d2417084b81798802c126b8c6cb (diff)
downloadgitea-3f38ff6c09f0497980ad13fda9803907cee6d612.tar.gz
gitea-3f38ff6c09f0497980ad13fda9803907cee6d612.zip
Merge branch 'dev' of github.com:gogits/gogs into dev
Conflicts: templates/status/500.tmpl
Diffstat (limited to 'scripts')
-rw-r--r--scripts/dockerfiles/README.md42
1 files changed, 29 insertions, 13 deletions
diff --git a/scripts/dockerfiles/README.md b/scripts/dockerfiles/README.md
index fc27bdf4f8..a3e18c8b50 100644
--- a/scripts/dockerfiles/README.md
+++ b/scripts/dockerfiles/README.md
@@ -1,14 +1,16 @@
### 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:
+Deploying gogs using [Docker](http://www.docker.io/) is as easy as pie. Simple
+open the `/dockerfiles/build.sh` file and replace the initial configuration
+settings:
```
-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.
+DB_TYPE="YOUR_DB_TYPE" # type of database, supports either 'mysql' or 'postgres'
+MEM_TYPE="YOUR_MEM_TYPE" # type of memory database, supports either 'redis' or 'memcache'
+DB_PASSWORD="YOUR_DB_PASSWORD" # The database password
+DB_RUN_NAME="YOUR_DB_RUN_NAME" # The --name option value to use when running the database image
+MEM_RUN_NAME="YOUR_MEM_RUN_NAME" # The --name option value to use when running the memory database image
+HOST_PORT="YOUR_HOST_PORT" # The port to expose the app on (redirected to 3000 inside the gogs container)
```
And run:
@@ -17,24 +19,38 @@ cd dockerfiles
./build.sh
```
-The build might take some time, just be paient. After it finishes, you will receive the message:
+The build will take some time, just be patient. After it finishes, it will
+display a message that looks like this (the content may be different, depending
+on your configuration options):
```
-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
+Now we have the MySQL image(running) and gogs image, use the follow command to start gogs service:
+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:
+To run the container, just copy the above command:
```
- docker run -i -t --link YOUR_DB_RUN_NAME:db --link YOUR_MEM_RUN_NAME:mem -p YOUR_HOST_PORT:3000 gogits/gogs
+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:
+Now gogs should be running! Open your browser and navigate to:
```
http://YOUR_HOST_IP:YOUR_HOST_PORT
```
+During the installation procedure, use the following information:
+
+- The database type should be whichever `DB_TYPE` you selected above
+
+- The database host should be either `db:5432` or `db:3306` for PostgreSQL and
+ MySQL respectively
+
+- The `RUN_USER` should be whichever user you're running the container with.
+ Ideally that's `git`, but your individual configuration may vary
+
+- Everything else is configured like a normal gogs installation
+
Let's 'gogs'!
Ouya~