Last active
May 10, 2019 08:58
-
-
Save garethahealy/edd4d7da405987d15c2b21990721463e to your computer and use it in GitHub Desktop.
podman-remote run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ podman-remote version | |
Version: 1.3.1-dev | |
RemoteAPI Version: 1 | |
Go Version: go1.11.10 | |
Git Commit: 627dbd49c5a80146e5806797243b63d0bd157760 | |
Built: Thu May 9 13:09:27 2019 | |
OS/Arch: darwin/amd64 | |
$ podman-remote info --debug | |
client: | |
OS Arch: darwin/amd64 | |
Podman Version: 1.3.1-dev | |
RemoteAPI Version: 1 | |
host: | |
arch: amd64 | |
buildah_version: 1.7.2 | |
cpus: 1 | |
distribution: | |
distribution: tinycore | |
version: "10.0" | |
hostname: box | |
kernel: 4.19.32-tinycore64 | |
mem_free: 554090496 | |
mem_total: 1039273984 | |
os: linux | |
swap_free: 198701056 | |
swap_total: 198701056 | |
uptime: 15h 14m 39.63s (Approximately 0.62 days) | |
insecure registries: | |
registries: [] | |
registries: | |
registries: | |
- docker.io | |
- quay.io | |
store: | |
containers: 1 | |
graph_driver_name: overlay | |
graph_driver_options: "" | |
graph_root: /var/lib/containers/storage | |
graph_status: | |
backing_filesystem: extfs | |
native_overlay_diff: "true" | |
supports_d_type: "true" | |
images: 2 | |
run_root: /var/run/containers/storage | |
$ podman-remote images | |
REPOSITORY TAG IMAGE ID CREATED SIZE | |
localhost/podmanremote-pause latest 93c2e4122cbb 52 seconds ago 216 MB | |
registry.access.redhat.com/ubi8/ubi 8.0 4a0518848c7a 2 weeks ago 216 MB | |
$ podman-remote run -it localhost/podmanremote-pause bash | |
Error: unable to pull : error getting default registries to try: repository name must have at least one component | |
$ podman-remote run -it podmanremote-pause bash | |
Error: unable to pull : error getting default registries to try: repository name must have at least one component | |
$ podman-remote run -it 93c2e4122cbb bash | |
Error: unable to pull : error getting default registries to try: repository name must have at least one component | |
$ podman-remote create localhost/podmanremote-pause | |
Error: unable to pull : error getting default registries to try: repository name must have at least one component | |
$ podman-remote create podmanremote-pause | |
Error: unable to pull : error getting default registries to try: repository name must have at least one component | |
$ podman-remote create 93c2e4122cbb | |
Error: unable to pull : error getting default registries to try: repository name must have at least one component |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment