https://github.com/jd-apprentice/docker-armhf
🐋 Docker images built in arm/v7
https://github.com/jd-apprentice/docker-armhf
arm7 docker makefile
Last synced: 3 months ago
JSON representation
🐋 Docker images built in arm/v7
- Host: GitHub
- URL: https://github.com/jd-apprentice/docker-armhf
- Owner: jd-apprentice
- License: mit
- Created: 2023-11-17T00:47:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-16T22:43:32.000Z (over 1 year ago)
- Last Synced: 2025-03-28T11:34:43.308Z (7 months ago)
- Topics: arm7, docker, makefile
- Language: Dockerfile
- Homepage: https://hub.docker.com/u/dyallo
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker images built in arm/v7 🐋
Learn how to build docker images in arm/v7 architecture with docker buildx and alpine linux.
# Table of Contents 📑
- [Commands 📦](#commands-)
- [Usage 📋](#usage-)
- [License 📝](#license-)## Commands 📦
Pay attention that commands have some things hardcoded like this one the `dyallo`
```makefile
build:
docker buildx build \
--platform "linux/arm/v7" \
--tag dyallo/$(IMAGE_NAME):$(IMAGE_TAG) \
--push docker/$(IMAGE_NAME) \
--no-cache
```### Usage 📋
IMAGE_TAG has a default value of `latest` and IMAGE_NAME has no default value which means you have to pass it when calling the command.
```bash
make instance
make use
make login
make build IMAGE_NAME="" IMAGE_TAG=""
make push IMAGE_NAME="" IMAGE_TAG=""
make run IMAGE_NAME="" IMAGE_TAG=""
```## License 📝
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details