infra-blocks/Docker publish action
Builds, tags and publishes your docker images.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| service | The name of the service to build as found in the docker-compose file. | yes | — |
| tags | A stringified JSON array of tags to apply on the built image. Defaults to '["latest"]'. | no | ["latest"] |
| build-arguments | A stringified JSON object of build arguments to pass to the Docker compose build command. The keys should be the name of the build argument and the values should be the value to pass. Only objects of strings are supported. | no | {} |
| docker-compose-file | The location of the docker-compose file. Defaults to "docker/docker-compose.yml". | no | docker/docker-compose.yml |
| dry-run | When set to true, builds and tags, but doesn't push images. | no | false |
Outputs
| name | description |
|---|---|
| published | A stringified JSON array of images published. An image is of the form '<repo>:<tag>' |