-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,14 +15,12 @@ MANAGER_DATA=${PWD}/kitodo/data/metadata # persistent data volume to mount | |
MONITOR_IMAGE=ghcr.io/slub/ocrd_monitor:latest # name and tag of image | ||
MONITOR_HOST=ocrd-monitor # name/address of server | ||
MONITOR_PORT_WEB=5000 # host-side port to exposed Web server | ||
MONITOR_PORT_GTK=8500 # host-side port to exposed Broadwayd (Gtk Web server) | ||
MONITOR_PORT_LOG=8088 # host-side port to exposed Dozzle (Docker log viewer) | ||
MONITOR_DATA=${PWD}/kitodo/data/metadata # persistent data volume to mount | ||
|
||
# Controller SSH server (with-ocrd-controller) | ||
CONTROLLER_IMAGE=ghcr.io/slub/ocrd_controller:latest # name and tag of image | ||
CONTROLLER_HOST=ocrd-controller # name/address of server (for Manager/Monitor) | ||
CONTROLLER_PORT_SSH=22 # SSH port (for Manager/Monitor) | ||
CONTROLLER_PORT_SSH=8022 # SSH port (for Manager/Monitor) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
markusweigelt
Author
Collaborator
|
||
CONTROLLER_ENV_UID=1001 # user id of SSH user (`id -u` when using `make`) | ||
CONTROLLER_ENV_GID=1001 # group id of SSH user (`id -g` when using `make`) | ||
CONTROLLER_ENV_UMASK=0002 # SSH user specific permission mask | ||
|
Why the non-default port here? (If Controller runs as a service under Compose, it should have a dedicated virtual host, so no conflicts for native SSH are to be expected. Otherwise this setting will have to be adapted to the actual value of the external server anyway.)