Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ env:
- DIST=squeeze
- DIST=wheezy
- DIST=jessie
- DIST=stretch

language: c
sudo: required
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ Currently, the following images are [available and automatically built on Docker
* Debian 6 Squeeze (~2011 (Link to [debian.org](https://www.debian.org/releases/squeeze/)))
* Debian 7 Wheezy (~2016 (Link to [debian.org](https://www.debian.org/releases/wheezy/)))
* Debian 8 Jessie (~2015 (Link to [debian.org](https://www.debian.org/releases/jessie/)))
* Debian 9 stretch (~2017 (Link to [debian.org](https://www.debian.org/releases/stretch/)))

Later releases are readily available for the [official Debian repo at Docker Hub](https://hub.docker.com/_/debian/).

Please be aware of the fact that these images represent legacy
Please be aware of that Etch to Squeeze images represent legacy
versions of said operating system, and *do* contain security
issues. Please do not use these images for anything else than O/S
research, testing etc.

Please be aware of that since Wheezy images, images, although legacy,
it still has extended security support through Freexian's ExLTS service,
on specific (mostly server oriented) packages, for more information check
the page at [oficial Debian Extended Long Term Support wiki page](https://wiki.debian.org/LTS/Extended).

## Usage

```
Expand Down
2 changes: 1 addition & 1 deletion build-archived-debian-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ else
# --privilege.
#
docker build -t debian-archived-builder . -f - <<EOF
FROM debian:stretch-slim
FROM debian:bookworm-slim
RUN apt-get update && \
apt-get install -y debootstrap
ENTRYPOINT [ "/bin/bash", "-c" ]
Expand Down