Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Java 8 #284

Merged
merged 8 commits into from
Sep 21, 2022
Merged
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
59 changes: 0 additions & 59 deletions 8/alpine/Dockerfile

This file was deleted.

72 changes: 0 additions & 72 deletions 8/bullseye/Dockerfile

This file was deleted.

109 changes: 0 additions & 109 deletions 8/windows/nanoserver-1809/Dockerfile

This file was deleted.

93 changes: 0 additions & 93 deletions 8/windows/windowsservercore-ltsc2019/Dockerfile

This file was deleted.

10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,16 @@ The image has several supported configurations, which can be accessed via the fo

* Linux Images:
* `latest` (`jdk11`, `bullseye-jdk11`, `latest-bullseye-jdk11`, `latest-jdk11`): Latest version with the newest remoting and Java 11 (based on `debian:bullseye-${builddate}`)
* `latest-jdk8` (`jdk8`, `bullseye-jdk8`, `latest-bullseye-jdk8`): Latest version with the newest remoting (based on `debian:bullseye-${builddate}`)
* `alpine` (`alpine-jdk11`, `latest-alpine`, `latest-alpine-jdk11`): Small image based on Alpine Linux (based on `alpine:${version}`)
* `alpine-jdk8` (`latest-alpine-jdk8`): Small image based on Alpine Linux (based on `alpine:${version}`)
* `archlinux` (`latest-archlinux`, `archlinux-jdk11`, `latest-archlinux-jdk11`): Image based on Arch Linux with JDK11 (based on `archlinux:latest`)
* `bullseye-jdk17` (`jdk17`, `latest-bullseye-jdk17`, `latest-jdk17`): JDK17 version with the newest remoting (based on `debian:bullseye-${builddate}`)

From version 4.11.2, the alpine images are tagged using the alpine OS version as well (i.e. `alpine` ==> `alpine3.16`, `alpine-jdk8` ==> `alpine3.16-jdk8`).
From version 4.11.2, the alpine images are tagged using the alpine OS version as well (i.e. `alpine` ==> `alpine3.16`, `alpine-jdk11` ==> `alpine3.16-jdk11`).

* Windows Images:
* `jdk8-windowsservercore-1809`: Latest version with the newest remoting and Java 8 (based on `eclipse-temurin:8.xxx-jdk-windowsservercore-1809`)
* `jdk8-nanoserver-1809`: Latest version with the newest remoting with Windows Nano Server and Java 8 (based on `eclipse-temurin:8.xxx-jdk-nanoserver-1809`)
* `jdk11-windowsservercore-1809`: Latest version with the newest remoting and Java 11 (based on `eclipse-temurin:11.xxx-jdk-windowsservercore-1809`)
* `jdk11-windowsservercore-ltsc2019`: Latest version with the newest remoting and Java 11 (based on `eclipse-temurin:11.xxx-jdk-windowsservercore-ltsc2019`)
* `jdk11-nanoserver-1809`: Latest version with the newest remoting with Windows Nano Server and Java 11 (based on `eclipse-temurin:11.xxx-jdk-nanoserver-1809`)
* `jdk17-windowsservercore-1809`: Latest version with the newest remoting and Java 17 (based on `eclipse-temurin:17.xxx-jdk-windowsservercore-1809`)
* `jdk17-windowsservercore-ltsc2019`: Latest version with the newest remoting and Java 17 (based on `eclipse-temurin:17.xxx-jdk-windowsservercore-ltsc2019`)
* `jdk17-nanoserver-1809`: Latest version with the newest remoting with Windows Nano Server and Java 17 (based on `eclipse-temurin:17.xxx-jdk-nanoserver-1809`)

The file `docker-bake.hcl` defines all the configuration for Linux images and their associated tags.
Expand Down
18 changes: 4 additions & 14 deletions build-windows.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,22 @@
version: '3'

services:
jdk8-nanoserver:
build:
context: ./8/windows/nanoserver-1809/
args:
- VERSION=$REMOTING_VERSION
jdk11-nanoserver:
jdk11-nanoserver-1809:
build:
context: ./11/windows/nanoserver-1809/
args:
- VERSION=$REMOTING_VERSION
jdk17-nanoserver:
jdk17-nanoserver-1809:
build:
context: ./17/windows/nanoserver-1809/
args:
- VERSION=$REMOTING_VERSION
jdk8-windowsservercore:
build:
context: ./8/windows/windowsservercore-ltsc2019/
args:
- VERSION=$REMOTING_VERSION
jdk11-windowsservercore:
jdk11-windowsservercore-ltsc2019:
build:
context: ./11/windows/windowsservercore-ltsc2019/
args:
- VERSION=$REMOTING_VERSION
jdk17-windowsservercore:
jdk17-windowsservercore-ltsc2019:
build:
context: ./17/windows/windowsservercore-ltsc2019/
args:
Expand Down
Loading