The codjix/aio:latest image serves as the foundation for all other AIO images. It is based on Alpine Linux 3.20 and includes minimal dependencies to provide a lightweight base for other services.
This image is primarily used as a base for other AIO images, but you can also run it directly:
docker run -it --name aio-base codjix/aio:latest
No specific environment variables for the base image.
No predefined volumes for the base image.
You can use this image as a base for your own custom images:
FROM codjix/aio:latest
# Add your custom installations and configurations
RUN apk add --no-cache your-package
# Set your entrypoint or command
CMD ["your-command"]
version: '3'
services:
base:
image: codjix/aio:latest
container_name: aio-base
command: sh -c "while true; do echo 'Container running'; sleep 3600; done"
The Dockerfile and associated scripts for this image are available in the src/latest directory of the AIO repository.