Skip to content
Draft
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
45df6fe
Add run network sample
joschrew Aug 19, 2024
a31568d
Fix typo in run-network/creator.py
joschrew Aug 21, 2024
ed0f4ca
Format run-network/creator.py
joschrew Aug 21, 2024
2ccfecf
Adapt run-network to slim containers
joschrew Jan 24, 2025
219552f
Update run-network example config
joschrew Jan 24, 2025
8b63cf8
Create a venv in run-network as a client
joschrew Jan 27, 2025
ab0f660
Update run-network: add parameter_override option
joschrew Jan 27, 2025
d3fa81f
Improve run-network creator and make-task
bertsky Feb 6, 2025
b9d0f84
Split network-setup make task
joschrew Feb 7, 2025
283e0ba
Use format-str only in run-network-templates
joschrew Feb 7, 2025
5739560
Add minimum medium maximum profiles to run-network
joschrew Feb 7, 2025
1fd919f
Add ocrd-all-tool.json to run-network temporarily
joschrew Feb 7, 2025
e40acac
Use docker-compose var for run-network profiles
bertsky Feb 11, 2025
924ac78
Add type-hints to run-network-creator
joschrew Apr 2, 2025
f76921f
Add volume for resources to run-network
joschrew Apr 2, 2025
e8d9c6a
Use external volume for run-network
joschrew Apr 15, 2025
0acbfa1
delegate to slim-container Docker images, remove native installation …
Apr 29, 2025
d32441c
adapt ocrd-all-*.json rules, separate init-vol-models from images / all
Apr 29, 2025
5bc2eb0
Merge remote-tracking branch 'origin/run-network' into slim-cli
May 8, 2025
5f754a6
rewrite run-network, integrate fully with Makefile…
Jul 4, 2025
4339693
processor delegator: improve…
Jul 6, 2025
5f66216
create delegator for `ocrd-process` analogously…
Jul 6, 2025
10fe0d2
delegators: only attempt .env detection for processors - always local…
Jul 6, 2025
04aac32
fix 2 typos
Jul 8, 2025
60f5fb3
fix typo in DOCKER_PULL_POLICY
bertsky Jul 14, 2025
4ac3f5a
network-clean: nofail on docker volume rm
bertsky Jul 14, 2025
6be0065
run-network/ocrd-all-config.yaml: use CWD /data by default
bertsky Jul 14, 2025
25e1f18
make clean independent of images-clean
Sep 23, 2025
f29c74b
make help: improve
Sep 23, 2025
e46044e
separate clean-vol-models off network-clean
Sep 23, 2025
904ebf9
help: add network-related targets
Sep 23, 2025
1be67aa
network-setup: default to $PWD as /data volume
Sep 23, 2025
3379d4d
fix pyyaml dependency
bertsky Sep 23, 2025
6e1a9d0
images: replace jq with python call
Sep 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/venv
*~
/venv*
# manual control:
local.mk
# generated by all:
ocrd-all-tool.json
ocrd-all-module-dir.json
ocrd-all-meta.json
ocrd-all-images.yaml
# generated by network-setup:
docker-compose.yml
.env
ocrd-processing-server-config.yaml
# generated by images:
/ocrd/*
7 changes: 0 additions & 7 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
[submodule "cor-asv-ann"]
path = cor-asv-ann
url = https://github.com/ASVLeipzig/cor-asv-ann.git
[submodule "format-converters"]
path = format-converters
url = https://github.com/OCR-D/format-converters.git
[submodule "ocrd_cis"]
path = ocrd_cis
url = https://github.com/cisocrgroup/ocrd_cis.git
Expand All @@ -42,10 +39,6 @@
[submodule "ocrd_anybaseocr"]
path = ocrd_anybaseocr
url = https://github.com/OCR-D/ocrd_anybaseocr.git
[submodule "opencv-python"]
path = opencv-python
url = https://github.com/skvark/opencv-python.git
shallow = true
[submodule "workflow-configuration"]
path = workflow-configuration
url = https://github.com/bertsky/workflow-configuration.git
Expand Down
Loading