dm0 / rpms / buildah

Forked from rpms/buildah 5 years ago
Clone

Blame tests/roles/cli/tasks/copy.yaml

1963bfe
---
1963bfe
- name: buildah copy
1963bfe
  command: buildah copy nginxc-2 /tmp/buildah/bud/Dockerfile
1963bfe
1963bfe
- name: check buildah copy
1963bfe
  command: ls {{mount.stdout}}/Dockerfile
1963bfe
1963bfe
- name: buildah copy to destination
1963bfe
  command: buildah copy nginxc-2 /tmp/buildah/bud/Dockerfile /home
1963bfe
1963bfe
- name: check buildah copy to
1963bfe
  command: ls {{mount.stdout}}/home/Dockerfile
1963bfe
1963bfe
- name: buildah copy URL
1963bfe
  command: buildah copy nginxc-2 https://github.com/projectatomic/buildah/raw/master/README.md
1963bfe
1963bfe
- name: check buildah copy URL
1963bfe
  command: ls {{mount.stdout}}/README.md
1963bfe
1963bfe
- name: buildah copy URL to destination
1963bfe
  command: buildah copy nginxc-2 https://github.com/projectatomic/buildah/raw/master/README.md /home
1963bfe
1963bfe
- name: check buildah copy URL to destination
1963bfe
  command: ls {{mount.stdout}}/home/README.md
1963bfe
1963bfe
- name: Download buildah README.md
1963bfe
  get_url:
1963bfe
    url: https://github.com/projectatomic/buildah/raw/master/README.md
1963bfe
    dest: /tmp/buildah/
1963bfe
1963bfe
- name: buildah copy dir
1963bfe
  command: buildah copy nginxc-2 /tmp/buildah
1963bfe
1963bfe
- name: check buildah copy dir
1963bfe
  command: ls {{mount.stdout}}/README.md
1963bfe
1963bfe
- name: buildah copy dir to destination
1963bfe
  command: buildah copy nginxc-2 /tmp /home
1963bfe
1963bfe
- name: check buildah copy dir to destination
1963bfe
  command: ls {{mount.stdout}}/home/buildah/README.md