add push command to docker instance

This commit is contained in:
Ben Allfree 2024-11-15 02:37:42 -08:00
parent abab2a9f65
commit 2dc435aad7

View File

@ -2,6 +2,7 @@
"name": "pockethost-instance",
"version": "0.0.1",
"scripts": {
"build": "docker build . -t benallfree/pockethost-instance:${npm_package_version} -t benallfree/pockethost-instance:latest"
"build": "docker build . -t benallfree/pockethost-instance:${npm_package_version} -t benallfree/pockethost-instance:latest",
"push": "docker push benallfree/pockethost-instance:${npm_package_version} && docker push benallfree/pockethost-instance:latest"
}
}