Skip to content

0.6.18 local and container connections

Compare
Choose a tag to compare
@willr3 willr3 released this 17 Feb 17:39
· 119 commits to master since this release

New Experimental Features

  • local host connection
    qDup can now connect to a local bash shell to run commands without requiring a local ssh service. This can be accessed with the reserved LOCAL host name
hosts:
- LOCAL
  • container connections
  • qDup can connect to or start a container using podman on either the local host or a remote host using an ssh connection to the remote host. The host can be defined with the container name, id, or an image url.
hosts:
- existingContainerById: 101abd31c437
- existingContainerByName: hungry_hertz
- newContainerFromImage: registry.access.redhat.com/ubi8/ubi:latest
- newContainerOnServer: username@server//registry.access.redhat.com/ubi8/ubi:latest

The above features are considered experimental because we may change how they are accessed. the LOCAL reserved host name and // separator between image url and ssh credentials may change in a subsequent release.