1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-04 17:15:49 +00:00
gitea/dockerfiles
Lance Ju 83283dfe37 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').
2014-04-16 00:58:09 +08:00
..
images Add the apt source when installing potgres. 2014-04-16 00:55:39 +08:00
build.sh Replace the 'mysql' options with 'db' options in build.sh 2014-04-16 00:54:02 +08:00
build.sh.bak Replace the 'mysql' options with 'db' options in build.sh 2014-04-16 00:54:02 +08:00
README.md Update README.md 2014-04-11 16:10:52 +08:00
run.sh Add the scirpts for auto deploy. 2014-04-10 19:56:19 +08:00

Gogs Install With Docker

Deply gogs in Docker 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