Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benzbrake/docker-alpine
https://github.com/benzbrake/docker-alpine
docker-image
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/benzbrake/docker-alpine
- Owner: benzBrake
- Created: 2020-07-11T11:39:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T01:27:47.000Z (over 1 year ago)
- Last Synced: 2024-10-30T10:12:55.546Z (about 2 months ago)
- Topics: docker-image
- Language: Dockerfile
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker-Alpine
![Publish Docker](https://github.com/benzBrake/Docker-Alpine/workflows/Publish%20Docker/badge.svg)
## DescriptionThis is possible thanks to the work from [uggedal](https://github.com/uggedal) on packaging Alpine Linux for Docker.
This project is now build on top of official [Alpine Linux](https://hub.docker.com/_/) image, only including a few convenience packages.
## Supported architecture
- arm
- s390x
- ppc64le
- amd64
- arm64
- 386## Supported tags
- latest
- 3.17
- 3.16
- 3.15
- 3.14
- 3.13
- 3.12
- 3.11
- 3.10
- 3.9
- 3.8
- 3.7## Included packages
To get you started, a set of packages have been integrated:
- curl
- ca-certificates## Time Zone
China Standard Time
# How to use this image
## Usage
Use like you would any other base image:
```
FROM benzbrake/alpine:3.7
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]
```