lewa/.drone.yml

31 lines
637 B
YAML
Raw Normal View History

2020-05-06 11:22:27 +00:00
kind: pipeline
name: default
workspace:
base: /lewa
steps:
2020-05-06 11:55:37 +00:00
- name: build book docker image
image: "monacoremo/nix:2020-04-05-05f09348-circleci"
2020-05-06 11:22:27 +00:00
commands:
2020-05-06 11:55:37 +00:00
- cd book && nix-build
- cp $(readlink result) /lewa/result/docker.tgz
2020-05-06 11:22:27 +00:00
volumes:
- name: book
2020-05-06 11:55:37 +00:00
path: /lewa/result
- name: push image
2020-05-06 11:22:27 +00:00
image: docker:dind
volumes:
- name: book
2020-05-06 11:55:37 +00:00
path: /lewa/result
2020-05-06 11:22:27 +00:00
- name: dockersock
path: /var/run/docker.sock
commands:
2020-05-06 11:55:37 +00:00
- docker import -f /lewa/result/docker.tgz
2020-05-06 11:22:27 +00:00
volumes:
- name: book
temp: {}
- name: dockersock
host:
path: /var/run/docker.sock