An open API service indexing awesome lists of open source software.

https://github.com/emilebosch/drone-docker-build

Build and push docker images with drone faster leveraging native docker on the server.
https://github.com/emilebosch/drone-docker-build

Last synced: 3 months ago
JSON representation

Build and push docker images with drone faster leveraging native docker on the server.

Awesome Lists containing this project

README

        

# Docker drone build

This image allows you to access and build docker images faster from
drone.

In order to use this you need to:

- Allow trusted build at your drone registry
- Edit the drone yml to use the following image

The `.drone.yml` file for instance used at our company with pushing to our private
registry.

```
build:
image: 54hrs/drone-docker-build
commands:
- docker login -u registry -p $$REGISTRY_PASSWORD -e [email protected] registry.private.com
- docker build -t registry.private.com/apps:$CI_COMMIT .
- docker push registry.private.com/apps:$CI_COMMIT
volumes:
- /var/run/docker.sock:/var/run/host.sock:ro
```