This repository hold official configuration for docker image of abaplint.
The image is accessible at Docker Hub. Published automatically every hour.
Templates for re-usage:
- Gitlab:
.gitlab-ci.yml
example can be found in templates. Working repo for this configation can be found at abaplinted_sample
# Supposedly after docker login
bin/build-container.sh
bin/push-containers.sh
# This pushes latest, and version tags (e.g. 2, 2.1, 2.1.3)
To test the built image:
bin/test-run.sh
- https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes
- https://jimhoskins.com/2013/07/27/remove-untagged-docker-images.html
- repository_dispatch github action:
- remove stopped containers:
docker rm $(docker ps -qa --no-trunc --filter "status=exited")
- remove dangling images (no tag):
docker image prune
- remove all unused images:
docker image prune -a