Subject | Hash | Author | Date (UTC) |
---|---|---|---|
docker: fixes and improvements for image generation | 37bd416d1664e8d9fcdf4554646618e5dd226e35 | Catalin(ux) M. BOIE | 2016-02-07 05:42:28 |
Added bug template and prefill the bug form assigned to field to the owner of the repo | 682e787ceb92d770e1a268a9f635e4336102cf3b | Catalin(ux) M. BOIE | 2016-02-07 05:38:58 |
Change download location for rocketgit.xml | 41bf40104994391fd5d9938ac891157625872c0d | Catalin(ux) M. BOIE | 2016-02-02 23:04:53 |
Fixes for data encoding for slack | 67b8210aa1c86b891d6760c89ac840f38f4eb025 | Catalin(ux) M. BOIE | 2016-01-30 17:49:57 |
Some TODO updates and some minor text fixes | d4a5bc8e8bc37021ca2c30899c01d8c54d56e5f6 | Catalin(ux) M. BOIE | 2016-01-30 17:38:59 |
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 |
File | Lines added | Lines deleted |
---|---|---|
docker/Dockerfile-rocketgit.tmpl | 1 | 1 |
docker/build.sh | 12 | 3 |
docker/push.sh | 6 | 5 |
File docker/Dockerfile-rocketgit.tmpl changed (mode: 100644) (index 68f1f86..e68f7a1) | |||
... | ... | RUN dnf -y upgrade --best --allowerasing | |
17 | 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 |
18 | 18 | RUN dnf -y install psmisc procps-ng sendmail php-opcache qrencode | RUN dnf -y install psmisc procps-ng sendmail php-opcache qrencode |
19 | 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 |
20 | RUN dnf -y install rocketgit-0.47 | ||
20 | RUN dnf -y install rocketgit-@@VER@@ | ||
21 | 21 | ||
22 | 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 |
23 | 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 |
File docker/build.sh changed (mode: 100755) (index 6f15072..c1e84c7) | |||
1 | 1 | #!/bin/bash | #!/bin/bash |
2 | 2 | ||
3 | set -u | ||
3 | 4 | set -e | set -e |
4 | 5 | ||
5 | echo "Building rocketgit-postgresql..." | ||
6 | docker build --tag="rocketgit/rocketgit-postgresql" -f Dockerfile-postgresql . | ||
6 | . ../duilder.conf | ||
7 | |||
8 | # This image must not be build every time! | ||
9 | #echo "Building rocketgit-postgresql..." | ||
10 | #docker build --tag="rocketgit/rocketgit-postgresql" -f Dockerfile-postgresql . | ||
7 | 11 | ||
8 | 12 | echo "Building rocketgit..." | echo "Building rocketgit..." |
9 | docker build --tag="rocketgit/rocketgit" . | ||
13 | sed -e "s|@@VER@@|${VER}|" Dockerfile-rocketgit.tmpl Dockerfile-rocketgit | ||
14 | docker build \ | ||
15 | --tag="rocketgit/rocketgit:latest" \ | ||
16 | --tag="rocketgit/rocketgit:${VER}" \ | ||
17 | -f Dockerfile-rocketgit \ | ||
18 | . |
File docker/push.sh changed (mode: 100755) (index 86c474a..3dfd962) | |||
... | ... | if [ "${answer}" != "y" ]; then | |
14 | 14 | exit 1 | exit 1 |
15 | 15 | fi | fi |
16 | 16 | ||
17 | docker tag rocketgit-postgresql rocketgit/rocketgit-postgresql:latest | ||
18 | docker tag rocketgit-postgresql rocketgit/rocketgit-postgresql:${VER} | ||
19 | docker push rocketgit/rocketgit-postgresql | ||
17 | # Not need to rebuild every time this image! | ||
18 | #docker tag rocketgit-postgresql rocketgit/rocketgit-postgresql:latest | ||
19 | #docker tag rocketgit-postgresql rocketgit/rocketgit-postgresql:${VER} | ||
20 | #docker push rocketgit/rocketgit-postgresql | ||
20 | 21 | ||
21 | docker tag rocketgit rocketgit/rocketgit:latest | ||
22 | docker tag rocketgit rocketgit/rocketgit:${VER} | ||
22 | #docker tag rocketgit rocketgit/rocketgit:latest | ||
23 | #docker tag rocketgit rocketgit/rocketgit:${VER} | ||
23 | 24 | docker push rocketgit/rocketgit | docker push rocketgit/rocketgit |