Merge branch 'dev' of https://github.com/gogits/gogs into dev
commit
cc1eb5643e
@ -1,26 +0,0 @@
|
|||||||
### Binary install gogs on ubuntu 14.04 LTS
|
|
||||||
|
|
||||||
### create user and install denpendency
|
|
||||||
- sudo adduser git
|
|
||||||
- sudo apt-get update
|
|
||||||
- sudo apt-get upgrade
|
|
||||||
- sudo apt-get install git
|
|
||||||
- sudo apt-get install mysql-server
|
|
||||||
|
|
||||||
### create the database
|
|
||||||
- $mysql -u root -p
|
|
||||||
- mysql> SET GLOBAL storage_engine = 'InnoDB';
|
|
||||||
- mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
|
|
||||||
- mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'password';
|
|
||||||
- mysql> FLUSH PRIVILEGES;
|
|
||||||
- mysql> QUIT
|
|
||||||
|
|
||||||
### install the gogs
|
|
||||||
- mkdir gogs
|
|
||||||
- cd gogs
|
|
||||||
- curl -L http://gobuild.io/github.com/gogits/gogs/v0.3.0/linux/amd64 -o v0.3.0.zip
|
|
||||||
- unzip v0.3.0.zip
|
|
||||||
- ./start.sh
|
|
||||||
|
|
||||||
> The up-to-date binary could be found at
|
|
||||||
> http://gobuild.io/download/github.com/gogits/gogs
|
|
@ -1,48 +0,0 @@
|
|||||||
##Install gogs under ubuntu 14.04 LTS 32bit from source code
|
|
||||||
|
|
||||||
###Requirements
|
|
||||||
- Go Programming Language: Version >= 1.2
|
|
||||||
- git(bash): Version >= 1.6.6(both server and client)
|
|
||||||
- MySQL: Version >= 5.1 or PostgreSQL or NOTHING.
|
|
||||||
|
|
||||||
### Create the user which will run git
|
|
||||||
- sudo adduser git
|
|
||||||
- su git
|
|
||||||
|
|
||||||
### Install git and Mysql-server
|
|
||||||
- sudo apt-get install git
|
|
||||||
- sudo apt-get install mysql-server
|
|
||||||
|
|
||||||
### Create database
|
|
||||||
- $ mysql -u root -p
|
|
||||||
- mysql> SET GLOBAL storage_engine = 'InnoDB';
|
|
||||||
- mysql> CREATE DATABASE gogs CHARACTER SET utf8 COLLATE utf8_bin;
|
|
||||||
- mysql> GRANT ALL PRIVILEGES ON gogs.* TO 'root'@'localhost' IDENTIFIED BY 'pasword';
|
|
||||||
- mysql> FLUSH PRIVILEGES;
|
|
||||||
- mysql> QUIT
|
|
||||||
|
|
||||||
### install go from source
|
|
||||||
- sudo apt-get install build-essential
|
|
||||||
- sudo apt-get install mercurial
|
|
||||||
- hg clone -r release https://go.googlecode.com/hg/ /home/git/golang/
|
|
||||||
|
|
||||||
|
|
||||||
- echo export GOROOT=/home/git/golang >>.bashrc
|
|
||||||
- echo export GOARCH=386 >>.bashrc
|
|
||||||
- echo export GOOS=linux >>.bashrc
|
|
||||||
- echo export GOBIN= /home/git/golang/bin >>.bashrc
|
|
||||||
- echo export GOPATH=$HOME/app/Go >>.bashrc
|
|
||||||
- echo PATH=${PATH}: /$HOME/golang/bin >>.bashrc
|
|
||||||
- cd $GOROOT/src
|
|
||||||
- ./make.bash
|
|
||||||
|
|
||||||
### Download and install dependencies
|
|
||||||
- $ go get -u github.com/gogits/gogs
|
|
||||||
|
|
||||||
### Build main program
|
|
||||||
- $ cd $GOPATH/src/github.com/gogits/gogs
|
|
||||||
- $ go build
|
|
||||||
- $ ./start.sh
|
|
||||||
|
|
||||||
### At present, you could access gogs from http://localhost:3000
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
|||||||
# Configs of the docker images, you might have specify your own configs here.
|
|
||||||
# type of database, support 'mysql' and 'postgres'
|
|
||||||
DB_TYPE="postgres"
|
|
||||||
DB_PASSWORD="YOUR_DB_PASSWORD"
|
|
||||||
DB_RUN_NAME="YOUR_DB_RUN_NAME"
|
|
||||||
HOST_PORT="YOUR_HOST_PORT"
|
|
||||||
|
|
||||||
# Replace the database root password in database image Dockerfile.
|
|
||||||
sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/$DB_TYPE/Dockerfile
|
|
||||||
# Replace the database root password in gogits image deploy.sh file.
|
|
||||||
sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/gogits/deploy.sh
|
|
||||||
# Replace the database type in gogits image deploy.sh file.
|
|
||||||
sed -i "s/THE_DB_TYPE/$DB_TYPE/g" images/gogits/deploy.sh
|
|
||||||
|
|
||||||
# Build the database image
|
|
||||||
cd images/$DB_TYPE
|
|
||||||
docker build -t gogs/$DB_TYPE .
|
|
||||||
#
|
|
||||||
## Build the gogits image
|
|
||||||
cd ../gogits
|
|
||||||
docker build -t gogs/gogits .
|
|
||||||
#
|
|
||||||
## Run MySQL image with name
|
|
||||||
docker run -d --name $DB_RUN_NAME gogs/$DB_TYPE
|
|
||||||
#
|
|
||||||
## Run gogits image and link it to the database image
|
|
||||||
echo "Now we have the $DB_TYPE image(running) and gogs image, use the follow command to start gogs service:"
|
|
||||||
echo -e "\033[33m docker run -i -t --link $DB_RUN_NAME:db -p $HOST_PORT:3000 gogs/gogits \033[0m"
|
|
||||||
|
|
Loading…
Reference in New Issue