@ossy/deployment-tools 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -28584,7 +28584,7 @@ class DockerClient {
28584
28584
 
28585
28585
  constructor() {
28586
28586
  this.networkName = 'deployment-tools'
28587
- ;(0,external_child_process_namespaceObject.exec)(`docker network create ${this.networkName}`)
28587
+ ;(0,external_child_process_namespaceObject.exec)(`sudo docker network create ${this.networkName}`)
28588
28588
  }
28589
28589
 
28590
28590
  stopContainer({ image }) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -11,7 +11,7 @@ class DockerClient {
11
11
 
12
12
  constructor() {
13
13
  this.networkName = 'deployment-tools'
14
- exec(`docker network create ${this.networkName}`)
14
+ exec(`sudo docker network create ${this.networkName}`)
15
15
  }
16
16
 
17
17
  stopContainer({ image }) {