Update ghcr.io/moghtech/komodo-core Docker tag to v1.19.2 #529
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/ghcr.io-moghtech-komodo-core-1.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
1.17.5
->1.19.2
Release Notes
moghtech/komodo (ghcr.io/moghtech/komodo-core)
v1.19.2
: Komodo v1.19.2Compare Source
🚨 Updating from v1.18.X or under? Review https://komo.do/docs/resources/auto-update for changes to "Poll for Updates" and "Auto Update" features.
Changelog
Resource
Misc
urlencode
database credentials to ensure they reach database correctlyx-token-auth:<ACCESS_TOKEN>
(see screenshot). This works for any other custom value you need in the<username>:
part of basic authentication. If not included, will default to usetoken:<ACCESS_TOKEN>
as before.v1.19.1
: Komodo v1.19.1Compare Source
Changelog
🚨 In order to use
config_files
, Periphery should also be updated to v1.19.1❗️In addition to
ghcr.io
, images are now also being published tomoghtech/komodo-*
(Docker Hub)Stack
config_files
🦎One of the most common requests was to allow in UI editing of
.env
files on server / in repo. But really, there's not much difference between.env
files and any config file which a Stack may be dependent on.This release adds the ability to configure all config files Stacks depend on, such as json / yaml app config files, and edit the files from the Komodo UI. Just add the relative path to the files (from the Run Directory) to the Stack "Config Files".
Users which are already using "Additional Env File" feature will find, with no change, that they can now see / edit all their additional env files from the UI. The only difference is that "Additional Env Files" will also be included in the
docker compose up
command (with --env-file flag), while "Config Files" will not.The UI editors support syntax highlighting for a couple of common formats, such as toml, yaml, json, ini, and shell / .env. It will be challenging to add support for all the various formats used, so I won't personally accept requests to add more. The support is set up for extension though, please raise a PR adding support for additional syntax highlighting you would like and I am happy to review and merge it.
Deploy Stack If Changed 🦎
The biggest issue with Deploy Stack If Changed up to v1.19.1 was that it would only Redeploy if one of the compose files changed. If the commit is only to config file, these changes would be missed.
Now in v1.19.1, "Config Files" and "Additional Env Files" will also be tracked and diffed for changes. This means changes made only to a config / additional env file can also trigger deploy using Deploy Stack If Changed.
Any change made to a compose file or additional env file will always lead to a full Redeploy. However users are able to configure what kind of behavior diffs to config files leads to, either globally for the Stack or at the service level. For example, you can set diffs in a config file to only restart a specific service or services.
Action Example 🦎
If you configure Stacks with all dependent
config_files
, you can create an Action like this:It is re-usable in multiple Procedures, which can wrap the Action an hardcode the actual Repo.
You then setup webhooks for the Procedure on push, or can schedule the Procedure to run at polling intervals.
Community Contributions 🦎
This last week saw a ton of end-to-end feature development in community contributions, and I wanted to highlight them here:
execute
API -- RunStackService -- in #732 by @bpbradleydocker compose run
Resource
moghtech/komodo-*
(docker.io)Misc
execute
API -- SendAlertv1.19.0
: Komodo v1.19.0Compare Source
/repo-cache
mount from Core compose service -- it's not needed, and only causes problems.- <host path>/komodo/backups:/backups
to Core compose service. https://komo.do/docs/setup/backupChangelog
The
km
CLI 🦎Introducing
km
, the new CLI for Komodo.Some examples:
km --help
km ps --down
km inspect my-container
km ls --tag network
km deploy stack my-stack
km run action my-action -y
km set var MY_VAR my_value -y
km update build my-build "version=1.19.0&branch=release"
km x commit my-sync
It also implements some operational features using direct database connection:
km database backup
km db restore
km db copy
- Replaces theghcr.io/moghtech/komodo-util
imagekm set user mbecks super-admin true
km set user mbecks password "temp-password"
You can either install it using the published binaries and a similar install script to Periphery systemd (but simpler, no systemd involved), as well as Homebrew for MacOS. A distroless image containing the binary is published at
ghcr.io/moghtech/komodo-cli
.Action Arguments 🦎
This PR also Implement the Action Arguments feature re #149
ARGS
object in Action scripts.RunAction
km run action my-action "arg1=value1&arg2=value2"
ARGS.WEBHOOK_BRANCH
andARGS.WEBHOOK_BODY
respectively.Resource
UI
KOMODO_ENABLE_FANCY_TOML=true
to use the previous onelocal_auth
is enabled, Admins can now create new local users from the UI, even whendisable_user_registration = true
.Misc
allowed_ips
now support Ipv4/6 subnets (like172.16.0.0/16
) by @bpbradley in #666v1.18.4
: Komodo v1.18.4Compare Source
Changelog
This release includes support for two repeatedly requested features.
There are also changes to the Periphery agent, remember to update both Core and Periphery to 1.18.4 so everything works correctly.
Template support
Resources can now be marked as templates, and they will be suggested as a the starting point when creating a new resource. You can control the inclusion of templates in the tables, and you can control the template inclusion behavior in the ListResources apis. The behavior is similar to the Gitea repo templates feature. This allows you to configure multiple "defaults" to use as starting points when creating more Resources like Stacks, satisfying requests such as #579.
Container port display / link
If a container defines port mappings, the host ports used will now be displayed in the container tables, as well as the container headers, Stack service tables / headers, and Deployment headers.
Hovering over the port will reveal additional information about the port binding, such as which network interfaces / protocols are involved. Clicking on the port will link to
$server_address:$port
, using the server address which Core uses to connect to the server.Resource
Misc
/GetUser
endpoint spam on token expiry in #618 by @huzky-vv1.18.3
: Komodo v1.18.3Compare Source
Changelog
git fetch
call before the branch checkout to make sure all latest remote branches are known, fixing the issue.Attach
permission to Repo / Build from the UIv1.18.2
: Komodo v1.18.2Compare Source
Changelog
The two main features of this release are Linked Repos and Alert Maintenance Windows.
Repo Linking
For Repo linking, this means you can link Repos that you configure once in Komodo to multiple resources. This avoids having to configure your repo provider, name, and account multiple times (you can just select it in the dropdown), and also keeps things in sync if you change the underlying repo provider, name, branch, or account. This is available on all Resources that use git repos (
Stacks
,Builds
, andResource Syncs
).For Stacks, this means that multiple Stacks attached to the same Repo will share the same repo clone on individual hosts. You can migrate your Stacks to used the linked Repo in place, just note that it won't deal with any data mounted inside the clone folders. Those would need to be moved to the new Repo clone path (as specified in the Repo config). Ideally all your data mounts are outside of the repo. Config files which are committed inside the repo are fine to keep mounted in using relative path however.
Note that you can but don't need to attach a Server / Builder to the Repo. If you do configure an attachment on the Repo, the Repo can still be attached to eg Stacks on other Servers. The Repo server / builder attachments aren't considered by Resources depending on the Repo.
Alert Maintenance Windows
These allow you to configure time periods to suppress alerts when downtime is expected, such as for system updates. You can schedule either Daily, Weekly, or One Time maintenance windows, and configure them on individual
Servers
andAlerters
.Resource
.
in the names re #563komodo.execute_container_exec
,komodo.execute_deployment_exec
,komodo.execute_stack_exec
methodskomodo.execute_terminal
, but set up to connect directly to container execdisable_container_exec = false
in Periphery config. Direct terminals can be disabled.Attach
permission on the Repo to be able to link Resources to it.Misc
userinfo
endpoint, instead of token claims. Does not affect already created users in Komodo, only new users. Re. #557v1.18.1
: Komodo v1.18.1Compare Source
Changelog
Schedules Page
Server Alerting
Commits
--force
in the push command.Resources
PullRepo
operation re #580docker compose config
in #584 by @undauntUI
v1.18.0
: Komodo v1.18.0Compare Source
Changelog
🚨 This release moves official support to FerretDB v2. Users who deployed v1.17.5 or before using Postgres / Sqlite option are using FerretDB v1 and should eventually migrate using the FerretDB v2 Update Guide. Note that this is not a change to Komodo itself, only to the list of supported Mongo stand-ins. Users can update to 1.18.0 and continue to use FerretDB v1 if they wish.
🚨 Admins managing user permissions may need to modify the user access rules. In particular, container logs,
docker inspect
on containers, and terminal access are now gated behind additional permissions (for non admin users).Specific Permissions
The main purpose of this release is to refine the access control / permissions system in Komodo. In 1.17.5 and before, access to resources was controlled only via access level (
Read
,Execute
,Write
). These levels provide access to the associated/read
,/execute
, and/write
methods on resources, and it worked pretty well to provide RBAC.Now with more potentially sensitive features, this is not quite enough to provide granular access control. To address this,
specific
permissions have been introduced in addition toRead
,Execute
, andWrite
levels.Logs
: User can retrieve docker / docker compose logs on the associated resource.Server
,Stack
,Deployment
.Inspect
: User can "inspect" docker containers.Server
,Stack
,Deployment
.and can easily lead to secrets being leaked to unintended users if not protected.
Terminal
: User can access the associated resource's terminal.Server
, this allows server level terminal access, and all container exec priviledges (Including attachedStacks
/Deployments
).Stack
orDeployment
, this allows container exec terminal (even withoutTerminal
onServer
).Attach
: User can "attach" other resources to the resource.Server
, allows users to attachStacks
,Deployments
,Repos
, andBuilders
.Build
, allows users to attach the Build to DeploymentsBuilder
, allows users to attachBuilds
.Processes
: User can retrieve the full running process list on theServer
.The above
specific
permissions are defined in a list alongside theirlevel
. This list is open for future expansion / and the associated implementations may be refined in future releases as well. The list is also given here: https://komo.do/docs/permissioning#specific-permissions.Default User Groups
Sometimes you will want to set a "baseline" set of permissions that all users will have on the Komodo instance. Previously this could only be done in very barebones way, by setting
KOMODO_TRANSPARENT_MODE=true
on the Komodo Core container. This would give all users a base level of "Read" on all resources.In addition to the above permissions features, this release also adds an
everyone
mode to User Groups. If you enable this mode on a User Group, then all users will inherit those permissions as a base.TOML Examples
As before, you are able to manage User Groups in Resource Syncs.
Misc.
pretty_startup_config = true
to get more human readable initial config log.KOMODO_PRETTY_STARTUP_CONFIG=true
PERIPHERY_PRETTY_STARTUP_CONFIG=true
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
f1e875dbe1
to71d1f4beba
67f65cb87f
to8e6a4a7e92
8e6a4a7e92
to9cf3a85f77
9cf3a85f77
tobe33883511
be33883511
to11e29a2fce
11e29a2fce
to51fc34b600
a722e82862
to1b75823234
22650c06f2
to730ed13760
730ed13760
to36da3746cd
dd7c29e5e0
to1d098240bf
782389fd67
toc40eea40b8
c40eea40b8
toba61db238e
1ff995553d
to4c8edb5874
4c8edb5874
to88c2c9bc77
88c2c9bc77
to06012d9c36
06012d9c36
toa92b52ddf2
a92b52ddf2
to5c798f6c86
5c798f6c86
to66f268d3fe
66f268d3fe
to889d220f6e
889d220f6e
to23a5abe36c
23a5abe36c
toda170f96c1
da170f96c1
to62636cb3bb
62636cb3bb
to38563e5c78
38563e5c78
to0dba3187ea
0dba3187ea
to4762e6f29c
4762e6f29c
to4317b75e01
4317b75e01
to6aa97c45a1
6aa97c45a1
tod4239176a1
d4239176a1
to9e9d9e4b45
9e9d9e4b45
to0a6d24bd51
0a6d24bd51
to304cabfbde
304cabfbde
to5867b76f1c
5867b76f1c
tob7aae35950
b7aae35950
to9c9b4a1c53
9c9b4a1c53
toc73c796dcf
c73c796dcf
toc98817f85b
c98817f85b
to63e2834d65
63e2834d65
to0acc4ce6f3
0acc4ce6f3
to9e95637736
9e95637736
to43d8d4a953
43d8d4a953
tob19dbe8401
b19dbe8401
to70ad4fbe81
70ad4fbe81
to5254a426d7
5254a426d7
toacf5d6b137
acf5d6b137
to70a2a7012c
70a2a7012c
toc57798c900
c57798c900
tod599c1249f
d599c1249f
to1fe789f176
1fe789f176
to1e2b8e2fd7
1e2b8e2fd7
to639c04be86
639c04be86
to64ec58dd69
64ec58dd69
to0b18ced61d
0b18ced61d
to485d88c1ca
485d88c1ca
to4ddc1d8888
4ddc1d8888
to5bdf797d20
5bdf797d20
to3c3fb18a32
3c3fb18a32
to4931cb74b0
4931cb74b0
tof457cab62a
f457cab62a
to62d69749e9
62d69749e9
to28dc4dfe16
28dc4dfe16
to69dff0c7ff
69dff0c7ff
to44be5d23fd
44be5d23fd
to7eb6ca6081
7eb6ca6081
to7d29d2a00c
7d29d2a00c
to1f4f967996
1f4f967996
to6d70d38d46
6d70d38d46
toaab528bd94
aab528bd94
todfbe1a3f58
dfbe1a3f58
tof9666fe0c8
f9666fe0c8
todc89863582
dc89863582
tocb86181222
cb86181222
to9413eed446
9413eed446
to8e438baa5d
8e438baa5d
toa6d3a04b3a
a6d3a04b3a
to3f7d59f1af
3f7d59f1af
to4ba3be8781
4ba3be8781
to6720eab3b5
6720eab3b5
to17e6cf153c
17e6cf153c
to58fc38a34c
58fc38a34c
to68b613d591
68b613d591
tob400a9af35
b400a9af35
to01a0b680fe
01a0b680fe
to7f0c716e6a
7f0c716e6a
to3d7b9e2a06
3d7b9e2a06
to1c494af4c6
1c494af4c6
tob5e858edb9
b5e858edb9
to2f3a252293
Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.0to Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.12f3a252293
toffc5e0d3ae
ffc5e0d3ae
toa50c8c5add
a50c8c5add
to7f0fd99134
7f0fd99134
to696f6f7b83
696f6f7b83
toa0795fcb0c
a0795fcb0c
to5f1c0cbd84
5f1c0cbd84
to6217bbe800
6217bbe800
tofdc8a25c77
fdc8a25c77
to5b0c9a5b90
5b0c9a5b90
tod14b83d5af
d14b83d5af
to3b3d8005ea
3b3d8005ea
todb6d7d904d
db6d7d904d
to79ba430836
79ba430836
tod9b6f26abb
d9b6f26abb
to1ffe3dbf45
1ffe3dbf45
toafd7b854e6
afd7b854e6
toe1991fa475
e1991fa475
to09691db6c6
09691db6c6
to0ba907171a
0ba907171a
toda44fd5e16
da44fd5e16
to2abd6f57d1
2abd6f57d1
toc21e297d0c
c21e297d0c
todf664bfa16
df664bfa16
to35811d5415
35811d5415
to5e8c1ad728
5e8c1ad728
tob1cc753549
b1cc753549
to6e9b3d4d4b
6e9b3d4d4b
to905a995b5d
905a995b5d
tobbb2636520
bbb2636520
tob74c6aba11
b74c6aba11
to1f4744a5cd
1f4744a5cd
to00931ef408
00931ef408
tob04e8816a6
b04e8816a6
to8694050c9d
8694050c9d
to23308919fb
23308919fb
tod37d0505f6
d37d0505f6
to6c8d57d975
6c8d57d975
to2379587684
2379587684
tob75e825f9d
b75e825f9d
to9a0753b3f7
9a0753b3f7
toa451710123
a451710123
tod928ac594d
d928ac594d
to950deaa076
950deaa076
toc211d4c83e
c211d4c83e
toca63aff15b
ca63aff15b
to2c2507ef85
2c2507ef85
to44830677d1
44830677d1
toc4ff328d2b
c4ff328d2b
toea61752b70
ea61752b70
to86a2cdd6d4
86a2cdd6d4
to17af460406
17af460406
to687a6d16f6
687a6d16f6
to90a812af94
90a812af94
to76ea211647
76ea211647
toed2ed903ec
ed2ed903ec
todea0ae9f1c
dea0ae9f1c
to909ee990e6
909ee990e6
to53368d4b28
53368d4b28
to1089828c8b
1089828c8b
to5cde7c9cc3
5cde7c9cc3
tofd84d59f2a
fd84d59f2a
to210b2003ed
210b2003ed
toc0a7cb5b3f
c0a7cb5b3f
to3314af44f5
3314af44f5
to55a2c4da74
55a2c4da74
to6c22cb872a
6c22cb872a
toa041449425
a041449425
to4f6f69ae54
4f6f69ae54
toc2d79f5d3a
c2d79f5d3a
to57afa2334a
57afa2334a
toace7ecfda3
ace7ecfda3
to5c54894790
5c54894790
to28554f839e
28554f839e
tofea837055d
fea837055d
to906a83b9c8
906a83b9c8
to0769c5228d
0769c5228d
toaedf0f2888
aedf0f2888
to2e9f8d9664
2e9f8d9664
to99cc60c39d
99cc60c39d
to0f11407425
0f11407425
to2465aa4d5c
2465aa4d5c
to3b573222aa
3b573222aa
toc56873148f
c56873148f
toa7b00cb618
a7b00cb618
to9971c7e18e
9971c7e18e
to8bf35c4d7a
8bf35c4d7a
to4b5cddd5b3
4b5cddd5b3
to7cbc3555c3
7cbc3555c3
to0be8f90afe
0be8f90afe
to258224ea75
258224ea75
to40873ae5f6
40873ae5f6
to4f93a178f1
4f93a178f1
to682e16ec65
682e16ec65
to07fb39bb9b
07fb39bb9b
to5f2a38dc61
5f2a38dc61
to7d5c382343
7d5c382343
to8a7784f845
8a7784f845
to0d71822990
0d71822990
to51920a2694
51920a2694
to8e068f9bf9
8e068f9bf9
toa8342d3b77
a8342d3b77
to40d8966af2
40d8966af2
to2e5454e0b8
Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.1to Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.22e5454e0b8
to875cd28ddb
Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.2to Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.3875cd28ddb
to23b2852fd6
23b2852fd6
to6503ba0232
6503ba0232
toc5d496a5e1
c5d496a5e1
to362e84d48c
362e84d48c
to99d7f0b443
99d7f0b443
to16d1d03721
16d1d03721
to958b678264
958b678264
to543b557222
543b557222
to21835a5c5e
21835a5c5e
todba8814b07
dba8814b07
tof9c982c291
f9c982c291
to2f29923ece
2f29923ece
tof33498d7ce
f33498d7ce
to07c79bc3aa
07c79bc3aa
toddc54ef76f
ddc54ef76f
toef4db06c54
ef4db06c54
to968d3e6a0b
968d3e6a0b
toe5a2d442a6
e5a2d442a6
to4c2b46f685
4c2b46f685
to50655d15a6
50655d15a6
to25d6b6f51b
25d6b6f51b
toc50662d978
c50662d978
toc44f74e681
c44f74e681
to908082afdc
908082afdc
toc55e2e1f34
c55e2e1f34
toc96a6c689f
c96a6c689f
tocca11dd661
cca11dd661
to43cb8bf9b1
43cb8bf9b1
to26c0fdf197
26c0fdf197
to1ab5376623
1ab5376623
to65d1c84163
65d1c84163
to05729d2106
05729d2106
to5924a8d994
5924a8d994
to429e7ccc6b
429e7ccc6b
to68147d482b
68147d482b
to794aded22c
794aded22c
to5f99af9e13
5f99af9e13
tob743e12490
b743e12490
tob5b6f1ffb7
b5b6f1ffb7
to7faf291e5f
7faf291e5f
to75e548497d
75e548497d
to882bd65980
882bd65980
tocaa6e9c33e
caa6e9c33e
to654664c265
654664c265
to2816070785
2816070785
to94035eda0e
94035eda0e
todeebcc8bea
deebcc8bea
to518e49f258
518e49f258
tode5f4f3a6d
de5f4f3a6d
to8fbeb151fc
8fbeb151fc
toe37fbcb64c
e37fbcb64c
tofebebb3367
febebb3367
toe22c6f0981
e22c6f0981
to50f3d437d6
50f3d437d6
toced4fbd91c
ced4fbd91c
to9c36bc3538
9c36bc3538
to2b25f6741b
2b25f6741b
to98b4906b16
98b4906b16
to100c2e0449
100c2e0449
tob2ec8f5da1
b2ec8f5da1
to49aea33d86
49aea33d86
toede17d6a5c
ede17d6a5c
tof2d7148c29
f2d7148c29
to5a25305a9b
5a25305a9b
tob2b31a9c11
b2b31a9c11
toe3cdf84b2d
e3cdf84b2d
tob02b0b01c6
b02b0b01c6
to6121a43a3a
6121a43a3a
to0d1709e515
0d1709e515
to88f6199800
88f6199800
to09d39d34a7
09d39d34a7
todc30add287
dc30add287
to572923fa35
572923fa35
to5942e53cc8
5942e53cc8
toc3f9c83880
c3f9c83880
to6e02eac1ee
6e02eac1ee
to98b8f3f79b
Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.3to Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.498b8f3f79b
to1688b92454
1688b92454
to4ca8556883
4ca8556883
to8355a608d1
8355a608d1
tofa05339538
fa05339538
to0d0a60a69e
0d0a60a69e
tob13979dcec
b13979dcec
to92fdd5f23b
92fdd5f23b
todfeaed2eee
dfeaed2eee
toff770cad44
ff770cad44
to9ed56ce6e9
9ed56ce6e9
toe39b002dbe
e39b002dbe
tof4a044d8ce
f4a044d8ce
to0c677088ab
0c677088ab
to94c2da21f6
94c2da21f6
tobc172efde6
bc172efde6
to152aab3d59
152aab3d59
to5add52b8e3
5add52b8e3
tod61a1856ad
d61a1856ad
to0994f9be55
0994f9be55
to8919a2d9f7
8919a2d9f7
to1c4eb5d187
1c4eb5d187
to6ce89bee8d
6ce89bee8d
todee902735e
dee902735e
to30e6761921
30e6761921
tod87cd240a8
d87cd240a8
to0b899cf2c3
0b899cf2c3
to486b1852c6
486b1852c6
to0c62d96d55
0c62d96d55
to5491038536
5491038536
toc1e27fe43a
c1e27fe43a
tof9ffc050d6
f9ffc050d6
toee6a00beae
ee6a00beae
to934118d8fb
934118d8fb
to681c5d0290
681c5d0290
toa18f9f0aff
a18f9f0aff
to32b98904c8
32b98904c8
to293cabe1af
293cabe1af
tod2c520ed61
d2c520ed61
tof4f6707c4f
f4f6707c4f
todf773746ac
df773746ac
tofdbd5b4ae3
fdbd5b4ae3
tofaca26ee03
faca26ee03
to63469680c4
63469680c4
to4794715c38
4794715c38
to00d2676a4f
00d2676a4f
to542ce2856c
542ce2856c
to60611dd286
60611dd286
to706a576bb7
706a576bb7
tob79fa76d09
b79fa76d09
to3f7afd4ed9
3f7afd4ed9
tob6226d563b
b6226d563b
to972d763345
972d763345
tof07a7a3c1c
f07a7a3c1c
tob276b64817
b276b64817
toe3a8dbb50e
e3a8dbb50e
to0a37e83741
0a37e83741
to33e251bf94
33e251bf94
toe905a761f0
e905a761f0
to6a9b7ade92
6a9b7ade92
to1ba36c25c4
1ba36c25c4
to14a4e7de5a
14a4e7de5a
tofea61d208a
fea61d208a
to2f85792f42
2f85792f42
toee09f2645e
ee09f2645e
toa8084f4246
a8084f4246
to114e0f5ee5
114e0f5ee5
to0248a81bea
0248a81bea
to32349642bb
32349642bb
to8cf2fed8f3
8cf2fed8f3
toc1db6aebd7
c1db6aebd7
to5434d4b8e9
5434d4b8e9
tob178e8c665
b178e8c665
tob05877f2de
b05877f2de
tob382c8e2e8
b382c8e2e8
to694356e500
694356e500
tob0f5cd5c00
b0f5cd5c00
to148945ea2a
148945ea2a
to9fcc5bd0b0
9fcc5bd0b0
tofc1ffcabfd
fc1ffcabfd
toe25e5dc5b6
e25e5dc5b6
to8a0544d1f2
8a0544d1f2
toc18c477838
c18c477838
to70c7ec9d8b
70c7ec9d8b
toa794749cc8
a794749cc8
to2417ddccfc
2417ddccfc
to2efce30723
2efce30723
toa1d14338a2
a1d14338a2
to1f2c8eda73
1f2c8eda73
toa69f992296
a69f992296
to42b72a713b
42b72a713b
to9ef00c78ac
9ef00c78ac
to3ca3a84647
3ca3a84647
to3aae5d4ab6
3aae5d4ab6
to2bd1b37a40
2bd1b37a40
to81e0cf372f
81e0cf372f
to8d019676be
8d019676be
to56ef339932
56ef339932
to4017a623d5
4017a623d5
tod184b5e01c
d184b5e01c
to07b76601ed
07b76601ed
tobfb8aa1f7d
bfb8aa1f7d
to4b9e5f7395
4b9e5f7395
tof763434d38
f763434d38
to13d3041919
13d3041919
tocbe1edaa91
cbe1edaa91
to324eeead13
324eeead13
tod1925d17e3
d1925d17e3
to5f9cee2d25
5f9cee2d25
toc8ac225800
c8ac225800
to6ca03d6ba8
6ca03d6ba8
to52353c4e64
52353c4e64
to7bf6e68cbe
7bf6e68cbe
tof48ee090e8
f48ee090e8
toa91e776aee
a91e776aee
tofbb968c256
fbb968c256
to0da6057945
0da6057945
toc3691c8c76
c3691c8c76
toec2f821725
ec2f821725
tocc1db4bb56
cc1db4bb56
to5f58110fa0
5f58110fa0
to38bdaa3118
38bdaa3118
tod7e949557b
d7e949557b
tof3b7e56027
f3b7e56027
toba19d239ba
ba19d239ba
to1895b99e89
1895b99e89
to027d906922
027d906922
to9e935a5c21
9e935a5c21
to51ccfa0af0
51ccfa0af0
to654fdb6c83
654fdb6c83
to70d7c32994
70d7c32994
to5df6646860
5df6646860
tod415188b7a
d415188b7a
to3b4d11938d
3b4d11938d
toe47cc11b4d
e47cc11b4d
toa8c70d0aba
a8c70d0aba
to9a8baeff74
9a8baeff74
tof8b4c62ca5
f8b4c62ca5
to7a8a538873
7a8a538873
to35e7c5bedb
35e7c5bedb
to8f3e2f06c8
8f3e2f06c8
to54058f000e
54058f000e
to56d8825033
56d8825033
to931d1f29de
931d1f29de
to5c17666e79
5c17666e79
to016be263b2
016be263b2
toa470bb6e6d
a470bb6e6d
to77ee71239f
77ee71239f
tof6d48b52cd
f6d48b52cd
toee21f8bf14
ee21f8bf14
to4836675885
4836675885
tocff165d01d
cff165d01d
to432fa437c8
432fa437c8
tobc072225a0
bc072225a0
to5efeb9d852
5efeb9d852
to2514ba7fe0
2514ba7fe0
to4efbfbd520
4efbfbd520
tod429a371bc
d429a371bc
tod261ac8421
d261ac8421
to0d87b8fcd3
0d87b8fcd3
to20282f3b16
20282f3b16
to4f2a3689df
4f2a3689df
to508d16ae94
508d16ae94
to983134b511
983134b511
to095cbb1af1
095cbb1af1
to3a63777faa
3a63777faa
to2b46c53db8
2b46c53db8
to06a4002355
06a4002355
tob14710544f
b14710544f
to19d39cf6b9
19d39cf6b9
to248b4e10aa
248b4e10aa
tof3e51ed0dd
f3e51ed0dd
to0ee01c6641
0ee01c6641
to62e0ac9ae9
62e0ac9ae9
tocd128dd280
cd128dd280
to18b3e1d03f
18b3e1d03f
toe9c29c3380
e9c29c3380
tocc782c8c8c
cc782c8c8c
toa9e4c39b92
a9e4c39b92
to8ec0f76e86
8ec0f76e86
to52e86dc971
52e86dc971
tod68544e988
d68544e988
toce2fbc785d
ce2fbc785d
to0c7a69733d
0c7a69733d
tob2bb14aa04
b2bb14aa04
tobb08c6c8bc
bb08c6c8bc
to21f65d6d57
21f65d6d57
toa02ff71825
a02ff71825
tob92a9e895c
b92a9e895c
to24fec18050
24fec18050
toafa2d94dc8
afa2d94dc8
toe5dd4f386e
e5dd4f386e
toacb0f10939
acb0f10939
to796dc037f0
796dc037f0
to1575fce93e
1575fce93e
toee2ade872b
ee2ade872b
tod3f2772afa
d3f2772afa
to1c26f0b0f3
1c26f0b0f3
to3b9094cc62
3b9094cc62
toe2c9865487
e2c9865487
to750921729a
750921729a
to87bb67f2f2
87bb67f2f2
toe9998369c6
e9998369c6
tod82e857420
d82e857420
to15990026d8
15990026d8
to8da1a0ec2c
8da1a0ec2c
to31a55f9ae2
31a55f9ae2
tod1e4c1a348
d1e4c1a348
to6e4c7067af
6e4c7067af
toab4e82c2b0
ab4e82c2b0
to1e92b1acbb
1e92b1acbb
to88047d3755
88047d3755
to819a36336e
819a36336e
to5e1975f716
5e1975f716
to44f7e70104
44f7e70104
to942541d81d
942541d81d
to317487b058
317487b058
toecc385d3b2
ecc385d3b2
tod25dbf488e
d25dbf488e
to37841fd493
37841fd493
tofc1cdd8f4d
fc1cdd8f4d
toba710a55bc
ba710a55bc
to798ef93b13
798ef93b13
to3c3cb1d848
3c3cb1d848
toca2312918e
ca2312918e
to1358595999
1358595999
toc812e291e7
c812e291e7
toc580e35ebd
c580e35ebd
toabc3875d15
abc3875d15
to791621b49d
791621b49d
to20718f2c8b
20718f2c8b
to759bef09f1
759bef09f1
tod27640fd34
d27640fd34
toce4dd985d5
ce4dd985d5
tocea6850f3f
cea6850f3f
to77f1c42dc5
77f1c42dc5
tof84e53943e
f84e53943e
to0ef96659fc
0ef96659fc
toe65f3b147d
e65f3b147d
tob61db0a9dc
b61db0a9dc
to2e48a055a8
2e48a055a8
todbbd45d60b
dbbd45d60b
to4560e3a17b
4560e3a17b
to12545638a2
12545638a2
to387fed3f61
387fed3f61
toc4e1c4ffc5
c4e1c4ffc5
to5c90052da9
5c90052da9
tod08199624c
d08199624c
tofc84097d52
fc84097d52
to79e86c1c36
79e86c1c36
to1c1e251e10
1c1e251e10
to304155d52d
304155d52d
to2f0f28ad7a
2f0f28ad7a
to17e59bfc90
17e59bfc90
to8b69375a66
8b69375a66
to977aba2342
977aba2342
to2e9cc2721f
2e9cc2721f
to6cfae673dd
6cfae673dd
tof7cba7cbe7
f7cba7cbe7
tod9a6948672
d9a6948672
toc04532a2f7
c04532a2f7
to886122d654
886122d654
to32ca25b5f4
32ca25b5f4
to9af7290334
9af7290334
toe083891962
e083891962
toe38f30a107
e38f30a107
tof152dc6e01
f152dc6e01
to432e3925e7
432e3925e7
tocbbae0de6d
cbbae0de6d
to754acf230c
754acf230c
tob8f426d0d2
b8f426d0d2
tocd72d6d355
cd72d6d355
to4c51a52664
4c51a52664
to7bf6921c48
7bf6921c48
to9d9c0ae932
9d9c0ae932
toc9745829a4
c9745829a4
tocbbc4e1ecc
cbbc4e1ecc
to991333e2e6
991333e2e6
to4530569f76
4530569f76
to8d4e5e4185
8d4e5e4185
to7441030c65
7441030c65
toe8f52f033d
e8f52f033d
tob01ec11fe5
b01ec11fe5
to3f61b21de2
3f61b21de2
to3cd34e68c0
3cd34e68c0
to079a99197f
079a99197f
to77d44c6e10
77d44c6e10
toa12eae0a9c
a12eae0a9c
to54bab11ac9
54bab11ac9
to460ce41bdc
460ce41bdc
to1f2446269f
1f2446269f
to3f23d47ce0
3f23d47ce0
to23191726ee
23191726ee
toda6f2dca55
da6f2dca55
toca13b8b699
ca13b8b699
to28143c3f1a
28143c3f1a
to1408ded4dc
1408ded4dc
to44b836c933
44b836c933
to4a891c950f
4a891c950f
to01c37593e7
01c37593e7
to126ec41ba9
126ec41ba9
tof8766c3744
f8766c3744
toe2c6fbe1a7
e2c6fbe1a7
to0a023ae774
0a023ae774
toed09d89796
ed09d89796
to2e85698eca
2e85698eca
tob34221dafc
b34221dafc
to4e0c38b7f4
4e0c38b7f4
toc8a271a3be
c8a271a3be
to3b9f7c54bc
3b9f7c54bc
toff4837f537
ff4837f537
toe79c1dacd6
e79c1dacd6
to8493d4fec5
8493d4fec5
to86286ea5f9
86286ea5f9
to7a3588a342
7a3588a342
to8c025118c5
8c025118c5
to36e17f10fb
36e17f10fb
to7090bb5e52
7090bb5e52
to5f96b263d4
5f96b263d4
to9b6fc2e2d7
9b6fc2e2d7
to2271f770b8
2271f770b8
to89322fdb4d
89322fdb4d
to0437cc37ac
0437cc37ac
tod0fdf58537
d0fdf58537
to7b0e4856da
7b0e4856da
to44765c3895
44765c3895
to300fbbaa61
300fbbaa61
to90c24ebdb7
90c24ebdb7
to17af12f686
17af12f686
to1b82dc4299
1b82dc4299
tof00cca20ab
f00cca20ab
to3cb62fe960
3cb62fe960
to277f5bbe70
277f5bbe70
to941b5b36ec
941b5b36ec
to87b0e0aa7e
87b0e0aa7e
to43038bc6e3
43038bc6e3
to0aef38c360
0aef38c360
tob85bb73986
b85bb73986
toa10e0c3ecb
a10e0c3ecb
toc2e7716dae
c2e7716dae
to1427212f5c
1427212f5c
to6128693d05
6128693d05
tod1fa5d3118
d1fa5d3118
to859cc05344
859cc05344
to319d27d14b
319d27d14b
to3f1b83df79
3f1b83df79
to2c1e3571dd
2c1e3571dd
to4fe129a969
4fe129a969
tofc757a1a84
fc757a1a84
to7a1663b965
7a1663b965
to0e068c2260
0e068c2260
tobb12623706
bb12623706
toc8dc5eeaed
c8dc5eeaed
tob72cc50d45
b72cc50d45
to5f1001b9c1
5f1001b9c1
to9e4417b81e
9e4417b81e
tod1a73b5ed5
d1a73b5ed5
tof686fc01c1
f686fc01c1
to094bb07173
094bb07173
to2959cd08dc
2959cd08dc
to0a0fdf3c40
0a0fdf3c40
to11e51199a3
11e51199a3
to6e3db4b240
6e3db4b240
toabea6f46a1
abea6f46a1
to14d1b1f81c
14d1b1f81c
toc87d195fe4
c87d195fe4
tob4c3607f6f
b4c3607f6f
to61e7c567b1
61e7c567b1
to703a9e50aa
703a9e50aa
to5eac5312c1
5eac5312c1
toa04f847575
a04f847575
to67884c3980
67884c3980
to3977277a63
3977277a63
to738ce6beb1
738ce6beb1
tod0f769910e
d0f769910e
to93aa783aa0
93aa783aa0
to7334093a4b
7334093a4b
to3f9ed39b29
3f9ed39b29
to45750f02d5
45750f02d5
toc8769aae33
c8769aae33
to5906aba7a9
5906aba7a9
to1acf071fc0
1acf071fc0
tob5db75652d
b5db75652d
to367a61a4f0
367a61a4f0
tod4fb0e864e
d4fb0e864e
to6be94e91fa
6be94e91fa
to14d980c7f4
14d980c7f4
to14f17d04d3
14f17d04d3
to593832093f
593832093f
to6ca5b3855d
6ca5b3855d
to2a616761cf
2a616761cf
to27610e6822
27610e6822
to93b63346fd
93b63346fd
to4403f12abc
4403f12abc
to221d375de0
221d375de0
to8fc77616b3
8fc77616b3
to2ae216e2d3
2ae216e2d3
to063e336d23
063e336d23
tobd82cb428b
bd82cb428b
to0d69b05839
0d69b05839
to06b314b810
06b314b810
toe5cf5bc13c
e5cf5bc13c
to6a7353847d
6a7353847d
to44bbda7816
44bbda7816
tocefa7d1542
cefa7d1542
to1a75cdd628
1a75cdd628
toc6155306df
c6155306df
tofdf5dd18b7
fdf5dd18b7
to8f4b54df79
8f4b54df79
tof90fce7741
f90fce7741
tode7d10583d
de7d10583d
tobeffd3e715
beffd3e715
to6097dc59ea
6097dc59ea
to3b1918cdc0
3b1918cdc0
to420e7f1df4
420e7f1df4
to1a5f115452
1a5f115452
to1f9c6e14c0
1f9c6e14c0
tod9156a5559
d9156a5559
tod711bf02ff
d711bf02ff
to44967f4da8
44967f4da8
to2d6a1d50ef
2d6a1d50ef
to4cff0551db
4cff0551db
to04fcf237aa
04fcf237aa
to4de4b9d6e0
4de4b9d6e0
to1222931d2d
1222931d2d
to919e4bb11a
919e4bb11a
to1f8f090c57
1f8f090c57
to3e828d4f09
3e828d4f09
tobc4d25c8b2
bc4d25c8b2
to5aad01d628
5aad01d628
to0f305500de
0f305500de
to377d31435d
377d31435d
to1c21c978ad
1c21c978ad
to1cf46085e5
1cf46085e5
to22905c64e8
22905c64e8
tod02e2007ff
d02e2007ff
tob7cfa22d1d
b7cfa22d1d
to7eef11f3f6
7eef11f3f6
tof4135de70a
f4135de70a
toca47da1627
ca47da1627
to3906d1ed99
3906d1ed99
to637193536c
637193536c
to8e2d0300cd
8e2d0300cd
to50072d92eb
50072d92eb
to4907e62ecb
4907e62ecb
to1a027864d6
1a027864d6
to2fcb870e9e
2fcb870e9e
to76151906c7
76151906c7
to40dbbe967c
40dbbe967c
to831df026c8
831df026c8
toe3687ceebf
e3687ceebf
toc432e73de4
c432e73de4
to7fb547250d
7fb547250d
to22646a76b2
22646a76b2
to82eec59f0f
82eec59f0f
toad078094ee
ad078094ee
to25382f3f2b
25382f3f2b
toe06d9c2934
e06d9c2934
toacac3ee1bb
acac3ee1bb
to1bbe393354
1bbe393354
to670dc8ec38
670dc8ec38
to2507789fd8
2507789fd8
to9d6ca0ea2c
9d6ca0ea2c
to85a95fc50c
85a95fc50c
tocd01e502db
cd01e502db
to110b189296
110b189296
to30ff7cee5a
30ff7cee5a
tob4289942ca
b4289942ca
to0f97f87350
0f97f87350
toaf5da16648
af5da16648
to5176186318
5176186318
to7b9f4e0f7b
7b9f4e0f7b
to7df4aaf15c
7df4aaf15c
to3dbe1e0144
3dbe1e0144
tod37f2be6bb
d37f2be6bb
tod6726486c3
d6726486c3
toa87febeebb
a87febeebb
toa5a21d9fb2
a5a21d9fb2
to2a36c0f049
2a36c0f049
toee398de011
ee398de011
to1d64e570d3
1d64e570d3
tofefcde2256
fefcde2256
toa197542aef
a197542aef
tof94a8340d9
f94a8340d9
to5d7366bef6
5d7366bef6
to09d3b81f2f
09d3b81f2f
toc0bcc4c92d
c0bcc4c92d
toe4a098b2da
e4a098b2da
toc1d9f25db0
c1d9f25db0
to7f7fd92463
7f7fd92463
to3c666239e2
Update ghcr.io/moghtech/komodo-core Docker tag to v1.18.4to Update ghcr.io/moghtech/komodo-core Docker tag to v1.19.03c666239e2
to10680bcb80
10680bcb80
to112a2f274f
112a2f274f
to3ddc3f34d9
3ddc3f34d9
to8b3517de0a
8b3517de0a
to0feaefbbb0
0feaefbbb0
to1a4c7dec92
1a4c7dec92
to3b601f4e1e
3b601f4e1e
to064f221d67
064f221d67
to3d5053d4b1
3d5053d4b1
to340fd72d78
340fd72d78
to17f9d2f359
17f9d2f359
to865ab3af24
865ab3af24
to143fc0016c
143fc0016c
toba19ce9606
ba19ce9606
to9c00cda2f6
9c00cda2f6
to812059cac3
812059cac3
to3aed8b07bf
3aed8b07bf
tob9c9662b76
b9c9662b76
to8468f7848b
8468f7848b
tof78538e787
f78538e787
to5964b13bdd
5964b13bdd
tobef6af2aae
bef6af2aae
to2840797751
2840797751
toccb70407c7
ccb70407c7
to9c159c305e
9c159c305e
to76a34a200b
76a34a200b
toc80f702eaa
c80f702eaa
to331dc135df
331dc135df
to51487d3bf3
51487d3bf3
tof1e37177db
f1e37177db
toce94888b2b
ce94888b2b
to42a3bfee4c
42a3bfee4c
tod488729f0a
d488729f0a
toddedad2139
ddedad2139
to9d88a14527
9d88a14527
to28941784c1
28941784c1
toaced661c5e
aced661c5e
to26f1674946
26f1674946
to9ac1cba7af
9ac1cba7af
to63f9c8614e
63f9c8614e
tob6cd86919c
b6cd86919c
toa9f8c23c1a
a9f8c23c1a
to3139bb7e2d
3139bb7e2d
to1b17730ff3
1b17730ff3
to5cc4249f22
5cc4249f22
to68b3310f0d
68b3310f0d
todf726f66f3
df726f66f3
to7716583920
Update ghcr.io/moghtech/komodo-core Docker tag to v1.19.0to Update ghcr.io/moghtech/komodo-core Docker tag to v1.19.17716583920
to925cbdffbd
925cbdffbd
to6672d99a01
6672d99a01
to76fc8e721a
76fc8e721a
tof52a5be452
f52a5be452
to2ce046d04c
2ce046d04c
to1e1f338727
1e1f338727
toa70a6f6b01
a70a6f6b01
toeb807d40a5
eb807d40a5
to08321bbd96
08321bbd96
to73f412f13c
73f412f13c
to54551a36e0
54551a36e0
to99c9141992
99c9141992
toc54fc07171
c54fc07171
to025080e0d8
025080e0d8
to8a265f5201
8a265f5201
tod270953924
d270953924
to533358dd28
533358dd28
to32550f8f30
32550f8f30
to69759651a3
69759651a3
to390d388ca5
95505d5c75
toff622d4554
ff622d4554
to1c02ce59f2
1c02ce59f2
to1a7557d56d
1a7557d56d
tof8973578dd
f8973578dd
to6b800e909f
6b800e909f
to8b5171d46b
8b5171d46b
to062e6ea243
062e6ea243
tof36e797ca8
f36e797ca8
toac2b462f71
ac2b462f71
toc6cbe35832
c6cbe35832
to4b0c8d2258
4b0c8d2258
to9db6da755c
9db6da755c
to6f1d73d998
6f1d73d998
to054a5cadb6
054a5cadb6
tocbe2e26c84
Update ghcr.io/moghtech/komodo-core Docker tag to v1.19.1to Update ghcr.io/moghtech/komodo-core Docker tag to v1.19.2cbe2e26c84
tof01531f0bd
f01531f0bd
to9b02433166
9b02433166
tob2f1702e3a
b2f1702e3a
tof1017fbbf4
f1017fbbf4
tod6c4ff9202
d6c4ff9202
to92578734bb
92578734bb
toe80e5f72db
e80e5f72db
to29f959e9e1
29f959e9e1
to8fff48cd1d
8fff48cd1d
to1ddd63f40b
1ddd63f40b
to739e0a5f4c
739e0a5f4c
to4531833329
4531833329
toc6e3779b68
c6e3779b68
to1ed45d020a
1ed45d020a
to5066079523
5066079523
to3aeb683a10
3aeb683a10
to0cd5a0f56f
0cd5a0f56f
toa665cbbf50
a665cbbf50
tof00f1625cf
f00f1625cf
to5291d79285
5291d79285
toa1671d27c4
a1671d27c4
to3584c4a2f7
3584c4a2f7
toda85590194
da85590194
to453fb066b8
453fb066b8
to208f9df632
View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.