We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe57c28 commit 75aa5e6Copy full SHA for 75aa5e6
packages/adapters/src/docker-instance-adapter.ts
@@ -186,6 +186,8 @@ IComponent {
186
187
const networkSetup = await this.getNetworkSetup();
188
189
+ const volumeId = config.id + "_" + config.parent_id;
190
+
191
const envs = getRunnerEnvEntries({
192
sequencePath: path.join(config.sequenceDir, config.entrypointPath),
193
instancesServerPort,
@@ -200,7 +202,7 @@ IComponent {
200
202
imageName: config.container.image,
201
203
volumes: [
204
...extraVolumes,
- { mountPoint: config.sequenceDir, volume: config.id, writeable: false }
205
+ { mountPoint: config.sequenceDir, volume: volumeId, writeable: false }
206
],
207
labels: {
208
"scramjet.sequence.name": config.name
0 commit comments