https://github.com/aeon-php/automation-docker
🐳 Docker configuration for aeon-php/automation
https://github.com/aeon-php/automation-docker
Last synced: 16 days ago
JSON representation
🐳 Docker configuration for aeon-php/automation
- Host: GitHub
- URL: https://github.com/aeon-php/automation-docker
- Owner: aeon-php
- Created: 2021-01-03T00:00:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-03T18:09:12.000Z (over 2 years ago)
- Last Synced: 2025-03-10T17:37:01.650Z (about 1 year ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/aeonphp/automation
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker image for [Automation](https://github.com/aeon-php/automation)
Generate changelog for any github project through CLI from Pull Requests Description / Commit Messages in https://keepachangelog.com/ format.
## Supported tags
- `aeonphp/automation:latest`
### Install
Install the container:
```
docker pull aeonphp/automation
```
### Usage
Display help:
```bash
docker run -t --rm aeonphp/automation list
docker run -t --rm aeonphp/automation --help
```
Display unreleased changes of aeon-php/automation project:
```bash
docker run -t --rm aeonphp/automation changelog:generate aeon-php/automation
```
### Building Image
```bash
docker buildx create --name builder --use
docker buildx build -t aeonphp/automation:latest . --push --no-cache --progress=plain --build-arg AEON_AUTOMATION_VERSION=^1.0 --platform=linux/amd64,linux/arm64
docker buildx build -t aeonphp/automation:1.0.4 . --push --no-cache --progress=plain --build-arg AEON_AUTOMATION_VERSION=1.0.4 --platform=linux/amd64,linux/arm64
```