--
Get Ostinato News and Updates on Twitter - Follow @ostinato (http://twitter.com/ostinato)
---
You received this message because you are subscribed to the Google Groups "ostinato" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ostinato+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ostinato/d5c3fd0c-2018-4df6-903d-231bda94f27dn%40googlegroups.com.
Can you please delete the image and then reimport from the tgz using docker load -i docker-ostinato-{tag}.tgz
Srivats,sha1sum is the sameshasum -a 1 docker-ostinato-v1.3.0-1.tgz
954de8ab86067ab760e186d5906efb37cf6f05dc docker-ostinato-v1.3.0-1.tgzI have the image imported into docker alreadydocker run ostinato/ostinato:v1.3.0-1docker: Error response from daemon: no command specified.If i try to docker run the .tgz filedocker run /home/kevins/ostinato/ostinato:v1.3.0-1.tgz
docker: invalid reference format.With the entrypoint defined
docker run --entrypoint ./start-ostinato.sh ostinato/ostinato:v1.3.0-1
docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "./start-ostinato.sh": stat ./start-ostinato.sh: no such file or directory: unknown.Trying to ls inside the container
docker run --entrypoint /usr/bin/ls ostinato/ostinato:v1.3.0-1
docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "/usr/bin/ls": stat /usr/bin/ls: no such file or directory: unknown.inspectdocker inspect ostinato/ostinato:v1.3.0-1
[
{
"Id": "sha256:a3412c4a3bd7de1cdf8619a1382cad7ad0764db681f5d0bbd20d6c8a32343c91",
"RepoTags": [
"ostinato/ostinato:v1.3.0-1"
],
"RepoDigests": [],
"Parent": "",
"Comment": "Imported from -",
"Created": "2024-08-22T18:49:39.300886941Z",
"DockerVersion": "27.1.2",
"Author": "",
"Config": {
"Hostname": "",
"Domainname": "",
"User": "",
"AttachStdin": false,
"AttachStdout": false,
"AttachStderr": false,
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": null,
"Cmd": null,
"Image": "",
"Volumes": null,
"WorkingDir": "",
"Entrypoint": null,
"OnBuild": null,
"Labels": null
},
"Architecture": "amd64",
"Os": "linux",
"Size": 772535586,
"GraphDriver": {
"Data": {
"MergedDir": "/var/lib/docker/overlay2/f634872d1ae1381868ea69c4bc88f487be98c0e89db04d297b7c069f783dab7b/merged",
"UpperDir": "/var/lib/docker/overlay2/f634872d1ae1381868ea69c4bc88f487be98c0e89db04d297b7c069f783dab7b/diff",
"WorkDir": "/var/lib/docker/overlay2/f634872d1ae1381868ea69c4bc88f487be98c0e89db04d297b7c069f783dab7b/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:52ee682959072c271df5f8591d8679a3f94154a3fa8e152b9807a5903a24b203"
]
},
"Metadata": {
"LastTagTime": "2024-08-22T18:49:39.315517853Z"
}
}
]HTH,Kevin