List of commits:
Subject Hash Author Date (UTC)
Docker improvements and 'make docker' to easy testing 2171599842a90282c24845d41965ef6f7893342c Catalin(ux) M. BOIE 2017-05-28 10:09:21
Improved apache sample configuration de04d409f25a6f5d1fe304069753144c17c4f631 Catalin(ux) M. BOIE 2017-05-28 10:07:47
Use the database only after we setup the connection 26487d0f17f510d26ef182b6c0938022b0730752 Catalin(ux) M. BOIE 2017-05-25 16:39:53
Bump version to 0.68 02b4708f1cdad67a810f7f1808364774e8ac4831 Catalin(ux) M. BOIE 2017-05-25 14:33:17
Small debug of schema_ver 990ad6c4fad455a284a19ed2a60e80442c4ac9d8 Catalin(ux) M. BOIE 2017-05-25 14:32:54
TODO updates ea0e06ee96761e3220ac7a27ede1669c7501b9ba Catalin(ux) M. BOIE 2017-05-25 14:29:43
Prepare env to use base_url d6c009c120fce4df47a7651a94619142c8992d52 Catalin(ux) M. BOIE 2017-05-24 19:05:08
Use base_url function instead of the obsolete web_url variable a821ee84f3dcf7294ee569dbc2da8b442cb60f29 Catalin(ux) M. BOIE 2017-05-24 19:03:49
Declare state as loaded only if I can really save it in cache 10c2fcf9b78d6eb568e81ec34addfa2246d32618 Catalin(ux) M. BOIE 2017-05-24 18:53:25
Small texts fixes 9f7998f23276d44435bd3319099d13bcb40c6b7e Catalin(ux) M. BOIE 2017-05-24 18:51:50
Improved http tests by using persistent connections 9b77048af3f73f8bf30128d5b07a2bae28315d45 Catalin(ux) M. BOIE 2017-05-24 18:48:50
Big change allowing http and https to work in parallel 3f1836953c50735c7860da1f951eb82a42a1940b Catalin(ux) M. BOIE 2017-05-24 15:19:39
Do not generate an internal error if the user has no e-mail 6c355fe874750a9b5f454cbeeea28b5cf0f00236 Catalin(ux) M. BOIE 2017-05-06 10:55:41
Use rg_exec in tests to polute the output df300f967ebfaa70499d5b599dcb1dfae02a89f3 Catalin(ux) M. BOIE 2017-04-29 22:56:05
Send errors on sterr instead of stdout for ssh commands 006772c3e526e6cdbc92a52b452842bf8b46c4eb Catalin(ux) M. BOIE 2017-04-29 22:53:25
Added samples config files in the doc folder 6dad3cb75cba2203fe2f091285a708822192f306 Catalin(ux) M. BOIE 2017-04-29 15:12:05
Added sample nginx config file c7c1a7057ddf6fcca6e02ee63d46777bfa94c8bd Catalin(ux) M. BOIE 2017-04-29 14:46:56
Improved error reporting when php-fpm receives chunked encoding fe158537256add633f02076e8359cd8f2267d54f Catalin(ux) M. BOIE 2017-04-29 14:46:18
Get rid of strage rewriting in we server config 8f845f11e9edfa5291965f570a5c971056416b62 Catalin(ux) M. BOIE 2017-04-29 14:43:23
Do not allow anyone to activate the debug (rg_debug). 0a296ec27e6988e91db8cac50e53345a8bce1c81 Catalin(ux) M. BOIE 2017-04-26 20:09:06
Commit 2171599842a90282c24845d41965ef6f7893342c - Docker improvements and 'make docker' to easy testing
Author: Catalin(ux) M. BOIE
Author date (UTC): 2017-05-28 10:09
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2017-05-28 10:09
Parent(s): de04d409f25a6f5d1fe304069753144c17c4f631
Signer:
Signing key:
Signing status: N
Tree: 9bc31d4ad27371f69bf1307588755441e227a8b5
File Lines added Lines deleted
Makefile.in 14 0
docker/Dockerfile-rocketgit.tmpl 1 0
docker/TODO 0 4
docker/build.sh 1 1
docker/rg.sh 8 0
File Makefile.in changed (mode: 100644) (index 88df0ac..226558b)
... ... install: all
81 81 push: push:
82 82 git push origin master git push origin master
83 83 git push origin --tags git push origin --tags
84
85 .PHONY: docker
86 docker:
87 @docker run --name rp --tty --detach \
88 rocketgit/rocketgit-postgresql
89 @docker run --name rg --tty --publish-all --link rp --detach \
90 --volume ${PWD}:/usr/share/rocketgit:ro \
91 rocketgit/rocketgit
92 docker port rg
93
94 .PHONY: docker-stop
95 docker-stop:
96 @-docker stop rp rg
97 @-docker rm rp rg
File docker/Dockerfile-rocketgit.tmpl changed (mode: 100644) (index f2d0ea3..8c4a156)
... ... RUN dnf -y install rocketgit
25 25 # Pay attention! Volumes comes after we populate the folders! # Pay attention! Volumes comes after we populate the folders!
26 26 VOLUME /var/lib/rocketgit VOLUME /var/lib/rocketgit
27 27 VOLUME /home/rocketgit VOLUME /home/rocketgit
28 VOLUME /etc/rocketgit
28 29
File docker/TODO changed (mode: 100644) (index f9ccdd0..3a8547a)
1 1 [ ] Fix rocketgit link [ ] Fix rocketgit link
2 2 [ ] Specify docker build http://... [ ] Specify docker build http://...
3 [ ] rg.sh: No test for openssh!
4 [ ] postgresql: I think "VOLUME" command is too high in the list.
5 I think it should be lower. Or maybe we let the user to
6 define the volume?
7 3 [ ] [ ]
File docker/build.sh changed (mode: 100755) (index 71eec66..563809a)
... ... set -e
5 5
6 6 . ../duilder.conf . ../duilder.conf
7 7
8 RP_VER="20170304b"
8 RP_VER="20170525"
9 9 sed -e "s|@@RP_VER@@|${RP_VER}|" Dockerfile-postgresql.tmpl > Dockerfile-postgresql sed -e "s|@@RP_VER@@|${RP_VER}|" Dockerfile-postgresql.tmpl > Dockerfile-postgresql
10 10 if [ "`docker images -q rocketgit/rocketgit-postgresql:${RP_VER}`" = "" ]; then if [ "`docker images -q rocketgit/rocketgit-postgresql:${RP_VER}`" = "" ]; then
11 11 echo "Building rocketgit-postgresql (${RP_VER})..." echo "Building rocketgit-postgresql (${RP_VER})..."
File docker/rg.sh changed (mode: 100755) (index 2871280..27ba4d9)
... ... while [ 1 ]; do
47 47 fi fi
48 48 fi fi
49 49
50 if [ "`ps ax|grep -v grep|grep sshd`" = "" ]; then
51 echo "Running sshd..."
52 /usr/sbin/sshd -D
53 if [ "${?}" != "0" ]; then
54 echo "ERROR: could not start sshd!"
55 fi
56 fi
57
50 58 sleep 30 sleep 30
51 59 done done
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main