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
The batch client takes a yaml configuration file that specifies the on-prem container endpoints. The following example can be written to `/mnt/my_nfs/config.yaml`, which is used in the examples below.
46
46
47
47
48
+
48
49
```yaml
49
50
MyContainer1:
50
51
concurrency: 5
@@ -68,6 +69,8 @@ The batch client can dynamically detect if an endpoint becomes unavailable (for
68
69
69
70
70
71
72
+
73
+
71
74
## Run the batch processing container
72
75
73
76
> [!NOTE]
@@ -78,22 +81,27 @@ The batch client can dynamically detect if an endpoint becomes unavailable (for
78
81
Use the Docker `run` command to start the container. This will start an interactive shell inside the container.
79
82
80
83
84
+
85
+
81
86
```Docker
82
87
docker run --rm -ti -v /mnt/my_nfs:/my_nfs --entrypoint /bin/bash /mnt/my_nfs:/my_nfs docker.io/batchkit/speech-batch-kit:latest
0 commit comments