Skip to content

Commit

Permalink
Don't use swarm overlay networks
Browse files Browse the repository at this point in the history
  • Loading branch information
firecow committed Dec 17, 2023
1 parent 8e96b17 commit f515845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/job.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ export class Job {
}

private async createDockerNetwork (networkName: string) {
const {stdout: networkId} = await Utils.spawn([this.argv.containerExecutable, "network", "create", "--attachable", "--driver=overlay", `${networkName}`]);
const {stdout: networkId} = await Utils.spawn([this.argv.containerExecutable, "network", "create", `${networkName}`]);
this._serviceNetworkId = networkId;
}

Expand Down

0 comments on commit f515845

Please sign in to comment.