This repository contains a CoreOS Docker image designed for containerized environments. CoreOS (now Fedora CoreOS) is a minimal, secure Linux distribution tailored for running Docker containers at scale, ideal for container orchestration systems like Kubernetes and Docker Swarm.
CoreOS is designed to be minimal and secure, providing an environment focused on running containers. This Docker image is based on Fedora CoreOS, optimized for cloud-native applications and scalable container deployments.
You can pull the image from Docker Hub using the following command:
docker pull garfieldwtf/coreos
To start a CoreOS container, run the following command:
docker run -it garfieldwtf/coreos /bin/bash
This command will run the container and give you an interactive shell. From there, you can start deploying and managing your containers.
Here's an example of running a container based on CoreOS, for instance, with a simple HTTP server:
docker run -d -p 80:80 garfieldwtf/coreos nginx
This example runs an nginx web server inside the CoreOS container, mapping port 80 from the container to port 80 on the host.
You can build upon this image by creating your own Dockerfile that extends this CoreOS base image. For example:
FROM garfieldwtf/coreos
# If needed, install packages via rpm (Fedora-based)
RUN rpm -Uvh <package-url>
Build your custom image by running:
docker build -t garfieldwtf/custom-coreos .
Feel free to open issues and pull requests. Contributions are welcome!
This repository is maintained under the MIT License.
Content type
Image
Digest
sha256:ea807465e…
Size
711.3 MB
Last updated
over 2 years ago
docker pull garfieldwtf/coreos