https://github.com/wodby/alpine
Alpine Linux docker container image
https://github.com/wodby/alpine
alpine docker
Last synced: about 1 year ago
JSON representation
Alpine Linux docker container image
- Host: GitHub
- URL: https://github.com/wodby/alpine
- Owner: wodby
- License: mit
- Created: 2017-09-27T13:10:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-05-31T07:14:36.000Z (about 1 year ago)
- Last Synced: 2025-07-03T12:58:53.338Z (about 1 year ago)
- Topics: alpine, docker
- Language: Shell
- Homepage: https://alpinelinux.org/
- Size: 133 KB
- Stars: 7
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Alpine Docker Container Image
[](https://github.com/wodby/alpine/actions)
[](https://hub.docker.com/r/wodby/alpine)
[](https://hub.docker.com/r/wodby/alpine)
This is a basic alpine image used in Wodby's docker images
## Docker Images
❗For better reliability we release images with stability tags (`wodby/alpine:3-X.X.X`) which correspond to [git tags](https://github.com/wodby/alpine/releases). We strongly recommend using images only with stability tags.
About images:
* All images based on Alpine Linux
* Base image: [alpine](https://hub.docker.com/r/_/alpine)
- [GitHub actions builds](https://github.com/wodby/alpine/actions)
* [Docker Hub](https://hub.docker.com/r/wodby/alpine)
[_(Dockerfile)_]: https://github.com/wodby/alpine/tree/master/Dockerfile
Supported tags and respective `Dockerfile` links:
* `3.22`, `3`, `latest` [_(Dockerfile)_]
* `3.21` [_(Dockerfile)_]
* `3.20` [_(Dockerfile)_]
* `3.19` [_(Dockerfile)_]
* `3.22-dev`, `3-dev`, `dev` [_(Dockerfile)_]
All images built for `linux/amd64` and `linux/arm64`
## Scripts
This image contains the following helper scripts:
* `compare_semver` - compares two semantic versions
* `exec_init_scripts` - execute all `.sh` scripts from `/docker-entrypoint-init.d/`. Useful to have in every docker image
* `gen_ssh_keys` - generates SSH keys
* `gen_ssl_certs` - generate SSL certificates
* `get_archive` - copies (or downloads) and unpacks an archive
* `gpg_verify` - verify GPG signature from a list of key servers
* `gpg_decrypt` - decrypt an artifact that contains GPG signature
* `wait_for` - executes a command with for N times with N timeout until it return 0
See [`test.sh`](https://github.com/wodby/alpine/blob/master/test.sh) for examples.