keinos/alpine

By keinos

Updated about 4 years ago

Alpine (vanilla) to trigger auto-build of other docker images.

Image
0

6.7K

Docker Cloud Automated buildDocker Cloud Build Status

Dockerfile of Alpine

Vanilla Alpine docker container with Asia/Tokyo timezone.

The latest tag supports both AMD64 and ARMv7l architecture.

docker pull keinos/alpine:latest

For ARMv6l architecture such as RaspberryPi Zero.

docker pull keinos/alpine:arm32v6

Usage

  1. Specify keinos/alpine:latest as a base image in the 'FROM:' directive in your Dockerfile of the source repository.

    FROM keinos/alpine:latest
    
    # do something ...
    
  2. Create a repository on Docker Hub and push your files.

    • If your files are on GitHub then link to GitHub's repository.
  3. "Manage Repository" and "Configure Automated Builds" at Docker Hub's "Builds" tab.

  4. Enable the configuration below:

    • Build configurations
      • REPOSITORY LINKS
        • "Enable for Base Image" -> Enable
  5. Then, whenever the keinos/alpine:latest is updated, the build in your repsitory on Docker Hub should be triggered as well.

Docker Pull Command

docker pull keinos/alpine