https://github.com/loong64/docker-aosc-artifacts
https://github.com/loong64/docker-aosc-artifacts
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/loong64/docker-aosc-artifacts
- Owner: loong64
- License: mit
- Created: 2025-08-07T05:17:36.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-08T08:42:31.000Z (2 months ago)
- Last Synced: 2025-08-21T05:01:34.359Z (about 2 months ago)
- Language: Shell
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
Docker image configuration, tools, and documentation repository.
参考 https://github.com/AOSC-Dev/aosc-os-docker-files 制作的AOSC Docker Images
## Image Lists 镜像列表
| Name | Tag | Pull Command | Platform |
|-------------------|------------------|--------------------------------------------------------|---------------|
| aosc-os-buildkit | latest, 20250722 | `docker pull ghcr.io/loong64/aosc-os-buildkit:latest` | linux/loong64 |
| aosc-os-container | latest, 20250722 | `docker pull ghcr.io/loong64/aosc-os-container:latest` | linux/loong64 |## Rationale
AOSC OS has been distributing in the form of tarballs for a long time. It should make sense to provide
users with Docker images that suites for specialized functions, for example, a webserver that runs on
nginx, or a base system that runs all the building necesities (yes, packagers should always keep their
workspace minimal).Docker images are (very) simple to deploy, and does not interfere with the running system (in a container),
therefore it is sensible to run applications in such a container.## What is provided here
We provide basic tools for creating images from existing AOSC OS releases (too big to upload to the
Docker Hub probably), and Dockerfiles for you to enjoy the DIY process.Also, documentations are provided with information to developers about maintaining the images, and
on how to improve them.# How to make a new Dockerfile for a new version for maintainers
```
cd scriptlets
./gen_dockerfile.rb
(enter the download url here)
cd #{version}
nano Dockerfile
(do your customization here)
(build the docker image now)
```