Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wullsnpaxbwzgydyyhwtkkspeqoayxxyhoisqhf/docker-archlinux
nightly updated archlinux base image (read-only mirror)
https://github.com/wullsnpaxbwzgydyyhwtkkspeqoayxxyhoisqhf/docker-archlinux
archlinux containers docker docker-archlinux docker-image dockerfile
Last synced: 2 days ago
JSON representation
nightly updated archlinux base image (read-only mirror)
- Host: GitHub
- URL: https://github.com/wullsnpaxbwzgydyyhwtkkspeqoayxxyhoisqhf/docker-archlinux
- Owner: wULLSnpAXbWZGYDYyhWTKKspEQoaYxXyhoisqHf
- License: other
- Created: 2020-06-02T14:53:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-18T13:16:05.000Z (about 1 year ago)
- Last Synced: 2024-11-11T05:16:14.827Z (2 months ago)
- Topics: archlinux, containers, docker, docker-archlinux, docker-image, dockerfile
- Language: Dockerfile
- Homepage: https://git.dotya.ml/wanderer/docker-archlinux/
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-archlinux
[![Build Status](https://drone.dotya.ml/api/badges/wanderer/docker-archlinux/status.svg)](https://drone.dotya.ml/wanderer/docker-archlinux)
[![Docker Image Version (latest by date)](https://img.shields.io/docker/v/immawanderer/archlinux)](https://hub.docker.com/r/immawanderer/archlinux/tags/?page=1&ordering=last_updated)
[![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/immawanderer/archlinux/linux-amd64)](https://hub.docker.com/r/immawanderer/archlinux/tags/?page=1&ordering=last_updated&name=linux-amd64)
[![Docker Image Size (tag)](https://img.shields.io/docker/image-size/immawanderer/archlinux/linux-amd64)](https://hub.docker.com/r/immawanderer/archlinux/tags/?page=1&ordering=last_updated&name=linux-amd64)
[![Docker pulls](https://img.shields.io/docker/pulls/immawanderer/archlinux)](https://hub.docker.com/r/immawanderer/archlinux/)This repository provides a Dockerfile to create an *updated* Arch Linux base(-devel) image.
The image is rebuilt nightly to ensure it always has the latest packages.
push mirror lives in [this GitHub repo](https://github.com/wULLSnpAXbWZGYDYyhWTKKspEQoaYxXyhoisqHf/docker-archlinux)
development happens on [this Gitea instance](https://git.dotya.ml/wanderer/docker-archlinux)## What you get
* updated Arch Linux [base image](https://hub.docker.com/_/archlinux)That's just it. This makes it possible to just grab the image and install whatever it is you want on top later.
## Purpose
* Arch Linux image with freshly updated package base to build upon## Running the image
* edit the `yourlocalpath` and `containerpath` variables or remove them entirely (along with `-v`) if you have *nothing to mount*```bash
docker run -it -v yourlocalpath:containerpath immawanderer/archlinux:latest
```## Building the image locally
* create a new folder
* grab the Dockerfile and place it in that folder
* build the image locally```bash
mkdir -pv mynewfolder
cd ./mynewfolder
wget https://git.dotya.ml/wanderer/docker-archlinux/raw/branch/master/Dockerfile
docker build --pull - < Dockerfile
```