container-library/base
3
0
Fork
You've already forked base
0
Container image as a base for most of the other of our library images: the latest stable version of Alpine Linux together with supervisord as an init system. https://alpinelinux.org
  • Dockerfile 100%
2021年07月01日 21:44:22 +02:00
Dockerfile Add support for /etc/init.sh (as supervisord can't do dependencies) 2021年07月01日 21:43:42 +02:00
LICENSE Initial commit 2021年05月04日 11:22:05 +02:00
README.md Add documentation for /etc/init.sh 2021年07月01日 21:44:22 +02:00

Base Container Image

Alpine Linux is a security-oriented, lightweight Linux distribution based on musl libc and busybox. (https://alpinelinux.org/)

Supervisor is a client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems. (https://supervisord.org/)

Container image as a base for most of the other of our library images: the latest stable version of Alpine Linux together with supervisord as an init system.

Use it in your Dockerfiles

FROM codeberg.org/container-library/base
COPY supervisord.conf /etc/
# Optionally, will be executed before supervisord
COPY init.sh /etc/

In the file supervisord.conf, you can manage programs & other options for supervisord.