List of commits:
Subject Hash Author Date (UTC)
Some docker fixes 36c31d723d45a067980217b1c642f6bb77d54fd9 Catalin(ux) M. BOIE 2016-01-30 17:38:25
When adding hooks, help the user by providing some defaults (slack for now) a7f4d8f10f8943508d90e968129b412431a4b0c3 Catalin(ux) M. BOIE 2016-01-30 17:37:50
Store good key string into the database. 460245b306d9e7340969b386eecaaa6cfc7f7431 Catalin(ux) M. BOIE 2016-01-29 18:23:12
Some small fixes for http hooks 43f8db273aedd804b150ee07a1af23b347687975 Catalin(ux) M. BOIE 2016-01-29 18:22:32
Bump version 37e96e0960414a11682c3fc1344e896c93492123 Catalin(ux) M. BOIE 2016-01-25 21:28:45
Remove debug leftover f39db0548ef78c2265d675a4199c9c26d53807b3 Catalin(ux) M. BOIE 2016-01-25 21:27:33
Fixed bad interaction between fixes and structure fc0fabf8d429a18978908694bc9a86d09bed702b Catalin(ux) M. BOIE 2016-01-25 21:27:13
Do not allow a failed connection to generate err-* file 5cf7214e724427ef78a1e8d72eef1be865c2270a Catalin(ux) M. BOIE 2016-01-20 22:56:56
Log the id of the event 115138b15e0436b56b7f75f12e5cf0d068989dea Catalin(ux) M. BOIE 2016-01-20 19:28:53
If git ls-tree returns nothing, the path is invalid a96013c19fae04a9ec0ec3b1505825c92150c978 Catalin(ux) M. BOIE 2016-01-20 19:14:03
bump version to 0.47 a71ef807917abc1adf19e2416e2d095f1d8dee7e Catalin(ux) M. BOIE 2016-01-17 19:38:40
Hooks fixes fa2a07bd822b496e65cee7c748429e9b69e91707 Catalin(ux) M. BOIE 2016-01-17 19:26:37
Mostly Amazon CodeDeploy and Lambda, and maked the plugins more generic 85a7d584e031f9b3ce94e2520f998ec6698ca46a Catalin(ux) M. BOIE 2016-01-15 20:14:20
Minor stuff d4d5f86741ca0a3c658879b82ec43877ceb0901b Catalin(ux) M. BOIE 2016-01-05 20:08:15
When we add a repo, we have some variables that are not filled f9b52eec5cd0decb886f87007a3d0a9826265a3a Catalin(ux) M. BOIE 2016-01-05 20:07:48
Small changes all over the place; first version with docker 657c8c4be46ae950d519320d1d54aa2f65a577d6 Catalin(ux) M. BOIE 2016-01-05 17:09:04
Cannot use env vars from cron 9c3b7123869564217493ab43c4bafdea2ce15702 Catalin(ux) M. BOIE 2016-01-03 08:45:51
Bump version to 0.44 bb334f3f3ec2af94da578b6c2e9202b339f80f36 Catalin(ux) M. BOIE 2016-01-02 23:25:39
Minor changes all over the place. 66c13a18b41d19e41e48aac537b735963bbb1f5a Catalin(ux) M. BOIE 2016-01-02 23:03:15
Set a timezone if is not set globally 0fb57c1d20aebfaaa6c1c48125b39aa8d7765923 Catalin(ux) M. BOIE 2016-01-02 21:09:41
Commit 36c31d723d45a067980217b1c642f6bb77d54fd9 - Some docker fixes
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-01-30 17:38
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-01-30 17:38
Parent(s): a7f4d8f10f8943508d90e968129b412431a4b0c3
Signer:
Signing key:
Signing status: N
Tree: 16e659801bed3292168c882c433f25e3ce3143e3
File Lines added Lines deleted
docker/Dockerfile 13 12
docker/README 7 0
File docker/Dockerfile changed (mode: 100644) (index eb9637f..68f1f86)
1 1 FROM fedora:23 FROM fedora:23
2 2 MAINTAINER Catalin(ux) M. BOIE <catab-docker@embedromix.ro> MAINTAINER Catalin(ux) M. BOIE <catab-docker@embedromix.ro>
3 3
4 VOLUME /var/lib/rocketgit
5 VOLUME /home/rocketgit
6
7 EXPOSE 80
8 EXPOSE 443
9 EXPOSE 22
10 EXPOSE 9418
11
12 COPY rg.sh /
13
14 CMD ["/rg.sh"]
15
4 16 RUN dnf -y upgrade --best --allowerasing RUN dnf -y upgrade --best --allowerasing
5 17 RUN dnf -y install http://kernel.embedromix.ro/dinorepo-0.0.10-1.noarch.rpm RUN dnf -y install http://kernel.embedromix.ro/dinorepo-0.0.10-1.noarch.rpm
6 18 RUN dnf -y install psmisc procps-ng sendmail php-opcache qrencode RUN dnf -y install psmisc procps-ng sendmail php-opcache qrencode
7 19 RUN dnf -y --disablerepo=* --enablerepo dinorepo clean all; echo no_cache_1 RUN dnf -y --disablerepo=* --enablerepo dinorepo clean all; echo no_cache_1
8 RUN dnf -y install rocketgit-0.46
9
10 COPY rg.sh /
20 RUN dnf -y install rocketgit-0.47
11 21
12 22 RUN sed -i -e 's|;opcache.enable_cli=.*|opcache.enable_cli=1|' /etc/php.d/10-opcache.ini RUN sed -i -e 's|;opcache.enable_cli=.*|opcache.enable_cli=1|' /etc/php.d/10-opcache.ini
13 23 RUN sed -i -e 's|;opcache.enable_cli=.*|opcache.enable_cli=1|' /etc/php-zts.d/10-opcache.ini RUN sed -i -e 's|;opcache.enable_cli=.*|opcache.enable_cli=1|' /etc/php-zts.d/10-opcache.ini
14 24 RUN grep -q ^rocketgit ${dir}/etc/mail/trusted-users || echo "rocketgit" >> /etc/mail/trusted-users RUN grep -q ^rocketgit ${dir}/etc/mail/trusted-users || echo "rocketgit" >> /etc/mail/trusted-users
15 25 RUN grep -q ^apache ${dir}/etc/mail/trusted-users || echo "apache" >> /etc/mail/trusted-users RUN grep -q ^apache ${dir}/etc/mail/trusted-users || echo "apache" >> /etc/mail/trusted-users
16 26
17 VOLUME /var/lib/rocketgit
18 VOLUME /home/rocketgit
19
20 EXPOSE 80
21 EXPOSE 443
22 EXPOSE 22
23 EXPOSE 9418
24
25 CMD ["/rg.sh"]
File docker/README changed (mode: 100644) (index 5567ffe..71a9cd1)
... ... docker-compose up
58 58 docker-compse ps docker-compse ps
59 59 docker-compose run web env docker-compose run web env
60 60 docker-compose stop docker-compose stop
61
62
63 == What I do to build rocketgit/rocketgit ==
64 ...
65 docker images | grep rocketgit/rocketgit | grep latest # to find "IMAGE ID"
66 docker tag "IMAGE ID" rocketgit/rocketgit:0.47
67 docker push rocketgit/rocketgit
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