You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/config.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The following table shows the config variables used to set individual apps insid
9
9
| env_vars | dict | {"test1": "test123", "example": "example123"} | a dict of envvars that will be passed to each work containers, use {} for non |
10
10
| docker_image | string | "registry.vidazoo.com:5000/nginx" | what docker image to run, note that it's currently not possible to set a different starting command then the one set in the container Dockerfile |
11
11
| running | bool | true | true - app will run, false - stops said app |
12
-
| network_mode | string | "bridge" | the network mode of the containers, should be either bridge, host, none, "container:name/id" |
12
+
| networks | list | ["nebula", "bridge"]| the networks containers will be part of, if you wish to use host or none networks make sure that they are alone in the list (["host"] or ["none"]), a default bridge user network named "nebula" is also added in any case which is not "host" or "none", the "nebula" network can be either be added explictly (["nebula", "example-net"]) or implicitly (["example-net"]) and will also be added if an empty list is set ([]) |
13
13
| volumes | list | ["/tmp:/tmp/1", "/var/tmp/:/var/tmp/1:ro"] | what volumes to mount inside the containers ,follows docker run -v syntex of host_path:container_path:ro/rw, use [] for non |
| devices | list | ["/dev/usb/hiddev0:/dev/usb/hiddev0:rwm"] | what devices to grant the containers access ,follows docker run --device of host_path:container_path:ro/rwm, use [] for non |
Copy file name to clipboardExpand all lines: docs/index.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,10 @@ Allows to:
13
13
5. Change # of containers running per core
14
14
6. Change image used
15
15
7. Manage multiple apps over different worker servers, each server "pod" of apps is determined by what APP_NAME envvar value comma separated list you start the worker-manager container with, allowing you to mix and match for diffrent worker clusters while still managing all of them from the same api-manager containers.
0 commit comments