Skip to content

Commit

Permalink
Merge pull request #43 from kameshsampath/issue-42
Browse files Browse the repository at this point in the history
Docs and Screenshot Updates
  • Loading branch information
kameshsampath committed Sep 22, 2022
2 parents f9b5834 + 4ca1055 commit 65c3d68
Show file tree
Hide file tree
Showing 20 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You can remove one or more Drone pipelines, removing does not physically delete
## Install Extension

```shell
docker extension install drone/drone-ci-docker-extension:0.0.2
docker extension install drone/drone-ci-docker-extension:latest
```

***IMPORTANT**: It is recommended to install the extension using Docker Extension Marketplace.
Expand Down
Binary file added docs/images/bulk_remove.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/details.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_import.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_open_in_vs_code.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_remove_pipelines.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_run_pipelines_allsteps.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_run_pipelines_include.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file modified docs/images/drone_desktop_feature_run_pipelines_trusted.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_run_pipelines_vscode.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_run_pipelines_with_env.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/drone_desktop_feature_run_pipelines_with_secret.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/home.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/list.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/remove_one.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/running.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions examples/hello-world/.drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ steps:
- 1.0.0-SNAPSHOT
- latest
- name: deploy app to k8s
image: kameshsampath/kube-dev-tools
pull: never
image: kameshsampath/kube-dev-tools:0.0.8
pull: if-not-exists
commands:
- k3d kubeconfig get my-demos > $KUBECONFIG
- export DOCKER_INTERNAL_IP=$(docker inspect k3d-my-demos-server-0 --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}')
Expand Down
1 change: 1 addition & 0 deletions examples/long-run-demo/.drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ platform:
steps:
- name: say hello on fedora
image: fedora
pull: if-not-exists
commands:
- x=0;while [ $x -lt 15 ]; do echo "hello"; sleep 1; x=$((x+1)); done

Expand Down
20 changes: 20 additions & 0 deletions examples/trusted/.drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
steps:
- name: display available docker images
image: kameshsampath/kube-dev-tools:0.0.8
pull: if-not-exists
commands:
- docker images
volumes:
- name: dockersock
path: /var/run/docker.sock
volumes:
- name: dockersock
host:
path: /var/run/docker.sock

0 comments on commit 65c3d68

Please sign in to comment.