microblog.pub/.drone.yml

51 lines
1.1 KiB
YAML
Raw Normal View History

2019-04-12 02:38:33 -05:00
kind: pipeline
name: default
steps:
- name: setup
2019-04-12 02:31:39 -05:00
image: golang
commands:
- |
cat <<EOF > index.html
hello world
EOF
- |
cat <<EOF > Dockerfile
FROM busybox
ADD index.html /www/index.html
EXPOSE 8000
CMD httpd -p 8000 -h /www; tail -f /dev/null
EOF
2019-04-11 15:35:52 -05:00
2019-04-12 02:38:33 -05:00
- name: build
2019-04-12 02:31:39 -05:00
image: docker:dind
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- sleep 5
- docker ps
- docker build -t hello-world .
# start the container using a detached (non-blocking)
# step. Bonus we can see our container logs in the
# build output.
2019-04-12 02:38:33 -05:00
- name: run
2019-04-12 02:31:39 -05:00
image: docker:dind
detach: true
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- docker run -p 8000:8000 hello-world
2019-04-11 15:07:44 -05:00
2019-04-12 02:31:39 -05:00
# curl the container to test it is up and running.
# notice that we use `docker:8000` since the container
# is running in the docker service container.
2019-04-12 02:38:33 -05:00
- name: test
2019-04-12 02:31:39 -05:00
image: golang # because I know it has curl installed
commands:
- curl -v http://docker:8000
services:
2019-04-12 02:35:56 -05:00
- name: docker
image: docker:dind
privileged: true