Danil Titarenko
9400eedc06
Add auto rebuild previous releases
...
* Add the ability to rebuild images
Rebuilding images will be done manually (for now). The choice of the number of rebuilt releases is available (1 by default), the choice of repositories for pushing rebuilt images is available (4testing by default).
Principle of operation:
Through the api of the docker hub, we get the last launched tag that falls under the pattern x.x.x.1, after that the tag with the assembly of which the minor tag x.x will be sent will be calculated. Next, at one of the build steps, the number of the previous release will be received, for example x. x.x.4 which will mean that the current one will be x.x.x.5
* Add login to dockerhub
* Refactoring code
Set some variables for all rebuild-info job. Also set default values for repository and quantity variables
* Refactor: remove push trigger
* Refactoring code
* Refactor: Unlinking a version
* Submitting the latest tag for the latest release only
2023-06-29 14:50:17 +05:00
papacarlo
4ae34b4d02
Merge branch release/v7.4.0 into master
2023-06-13 11:25:57 +00:00
Evgeniy Antonyuk
48add9dc89
Add the ability to enable request filtering agent ( #628 )
2023-05-26 18:59:54 +05:00
Danil Titarenko
7d32cac40a
Add new stable images versioning principles ( #633 )
...
* Refactoring stable images release versioning
The new principle of stable docker images versioning: release numbering is now not by build number, but by serial number.
* Refactoring: fix non-example image pull tag
2023-05-25 18:36:33 +05:00
Semyon Bezrukov
989647852e
Fix deprecated set-output ( #632 )
2023-05-24 13:51:14 +05:00
Alexey Golubev
a97a8f0aaf
Merge pull request #624 from ONLYOFFICE/hotfix/v7.3.3
...
Merge branch hotfix/v7.3.3 into release/v7.4.0
2023-05-15 12:01:29 +05:00
Evgeniy Antonyuk
e2080865b9
Merge branch 'release/v7.4.0' into hotfix/v7.3.3
2023-05-15 12:00:20 +05:00
papacarlo
8e08fed4ee
Merge branch hotfix/v7.3.3 into master
2023-05-15 06:52:28 +00:00
Alexey Golubev
4c5e5f20ee
Revert "Trace build commands ( #609 )"
...
This reverts commit 708684ccc1096f4ef1131ec0d16ea5c1c635fcdf.
2023-05-02 13:25:36 +05:00
Semyon Bezrukov
708684ccc1
Trace build commands ( #609 )
...
* Trace build commands
* Small fix
2023-04-25 20:01:14 +05:00
Evgeniy Antonyuk
c61323257b
Use the default supervisord configuration ( #608 )
...
* Use a unix socket by default
* Use the default supervisord configuration
* Return the init.d supervisor file
2023-04-20 20:27:35 +05:00
Alexey Golubev
06fe4034f0
Merge master into hotfix/v7.3.3
2023-04-18 22:39:22 +05:00
Alexey Golubev
b011e73f64
Fix nginx secure link url ( #604 )
2023-04-18 22:34:02 +05:00
Semyon Bezrukov
44eb6c45f2
Fix deb package link ( #602 )
2023-04-14 22:32:04 +05:00
Semyon Bezrukov
4499ca1d34
Fix deb package link ( #599 )
2023-04-10 17:10:23 +05:00
Evgeniy Antonyuk
09b9a73637
fix Bug 61960 - Add authentication for supervisord ( #598 )
2023-04-10 13:16:23 +05:00
Evgeniy Antonyuk
f455bdf433
fix Bug 59826 - Fix database creation without onlyoffice owner ( #597 )
...
* fix Bug 59826 - Fix database creation without onlyoffice owner
* Fix an unnecessary space
2023-04-06 15:18:10 +05:00
Dmitry Kireev
f03bc7ec18
Add docker-compose with prometheus and grafana ( #495 )
...
* Add docker-compose with prometheus and grafana
* Add dashbord installation
* Fix path to config file
2023-03-21 15:06:05 +05:00
Evgeniy Antonyuk
648ff7322f
Fix the owner of the logrotate config ( #591 )
2023-03-17 14:25:33 +05:00
papacarlo
00b188d9ff
Merge branch hotfix/v7.3.3 into master
2023-03-15 10:53:31 +00:00
Alexey Golubev
6f716134dd
Fix misprint
...
Instead https://github.com/ONLYOFFICE/Docker-DocumentServer/pull/579
2023-02-22 17:41:59 +05:00
papacarlo
0fb195b958
Merge branch hotfix/v7.3.2 into develop
2023-02-14 07:59:59 +00:00
papacarlo
4636320e3b
Merge branch hotfix/v7.3.2 into master
2023-02-14 07:59:56 +00:00
Alexey Golubev
4c05627d1f
Merge pull request #585 from ONLYOFFICE/bugfix/psql-owner
...
fix Bug 59826 - Fix database creation without onlyoffice owner
2023-02-07 18:53:11 +05:00
evgeniy-antonyuk
985bc4020a
Fix database creation without onlyoffice owner
2023-02-07 16:08:40 +03:00
Alexey Golubev
46215d4372
Merge pull request #584 from ONLYOFFICE/hotfix/v7.3.2
...
Merger hotfix/v7.3.2 into hotfix/v7.3.3
2023-02-07 13:02:08 +05:00
Alexey Golubev
934d17b994
Fix bug #61002 ( #583 )
...
Removed unused code that was causing a build error
2023-02-07 13:00:29 +05:00
Thomas Gerbet
83825d26e9
Generated JWT secret is too small for HMAC SHA256 ( #582 )
...
The key that is automatically generated weaken the security strength.
As noted in RFC7518 section 3.2 [0]:
```
A key of the same size as the hash output (for instance, 256 bits for
"HS256") or larger MUST be used with this algorithm. (This
requirement is based on Section 5.3.4 (Security Effect of the HMAC
Key) of NIST SP 800-117 [NIST.800-107], which states that the
effective security strength is the minimum of the security strength
of the key and two times the size of the internal hash value.)
```
Some JWT libraries are rejecting by default keys that are too small in
a attempt to prevent misusages so generating a key that does not respect
the minimal length can be problematic for OO integrations.
[0] https://www.rfc-editor.org/rfc/rfc7518.html#section-3.2
2023-02-07 11:02:40 +05:00
Danil Titarenko
a3d7ed7ceb
Install rabbitmq-server from default ubuntu repo, fixed bug closes #575 ( #578 )
...
(cherry picked from commit cac79dea01b64793909ed505d28c9cc5667aac9b)
2023-02-03 20:23:17 +05:00
Danil Titarenko
cac79dea01
Install rabbitmq-server from default ubuntu repo, fixed bug closes #575 ( #578 )
2023-02-02 20:41:49 +05:00
papacarlo
22ab86d2d6
Merge branch release/v7.3.0 into develop
2023-02-02 13:38:11 +00:00
Danil Titarenko
f98d6a4ae3
Fix ucs build ( #574 )
...
Links on packages was update
2023-01-31 19:05:26 +05:00
Danil Titarenko
c017ed1680
Fix stable build ( #573 )
...
Remove image present checker, because its not work corractly
2023-01-31 17:18:39 +05:00
papacarlo
562b248198
Merge branch release/v7.3.0 into master
2023-01-31 08:03:28 +00:00
Danil Titarenko
611db1f4a9
Fix docker build by downgrading rabbit from 3.10 to 3.9 ( #569 )
2023-01-18 17:58:48 +03:00
Alexey Golubev
8bb2ab6321
Merge pull request #565 from ONLYOFFICE/master
...
Merge master into release/v7.3.0
2023-01-16 12:12:09 +03:00
Evgeniy Antonyuk
26f3d34ac3
Cosmetic changes README.md ( #563 )
2022-12-30 12:50:18 +03:00
Evgeniy Antonyuk
759bed5c14
Add obligatory use of JWT parameters ( #562 )
2022-12-30 12:40:54 +03:00
papacarlo
eb643e3adb
Merge pull request #561 from ONLYOFFICE/hotfix/v7.2.2
...
Merge branch hotfix/v7.2.2 into develop
2022-12-27 18:34:45 +03:00
Semyon Bezrukov
19debc5181
Merge branch 'develop' into hotfix/v7.2.2
2022-12-27 18:31:52 +03:00
Danil Titarenko
7fa2f598a1
Fix ucs build ( #537 )
...
* Fix ucs build
* Change rabbitmq version on lower
* Remove rabbimq version argument
* Rename variable
2022-12-20 14:54:23 +03:00
Alexey Golubev
01f8337dcb
Merge pull request #560 from ONLYOFFICE/feature/release-merge
...
Merge branch hotfix/v7.2.2 into release/v7.3.0
2022-12-20 14:16:52 +03:00
Semyon Bezrukov
edb6e9b044
Merge branch 'hotfix/v7.2.2' into feature/release-merge
2022-12-20 13:24:55 +03:00
papacarlo
3fb3b2f3de
Merge branch hotfix/v7.2.2 into master
2022-12-20 09:55:28 +00:00
Semyon Bezrukov
b074535366
Fix makefile ( #554 )
2022-12-15 17:45:33 +03:00
Alexey Golubev
b59175d13f
Merge pull request #552 from ONLYOFFICE/release/v7.3.0
...
Merge branch release/v7.3.0 into develop
2022-12-12 15:32:25 +03:00
Semyon Bezrukov
e5f8e69d89
Fix package url ( #551 )
2022-12-01 15:53:43 +03:00
Semyon Bezrukov
574b3c92b4
Update build scripts ( #550 )
2022-12-01 14:46:31 +03:00
papacarlo
47503e6c98
Merge branch hotfix/v7.2.1 into develop
2022-11-11 11:12:56 +00:00
Danil Titarenko
c7090252ff
Add base image and postgresql version build arguments ( #524 )
...
(cherry picked from commit e1d7cfd5e86bf143d25b019fd72ec2849df15a03)
2022-10-31 19:00:18 +03:00