Skip to content
This repository was archived by the owner on Mar 8, 2022. It is now read-only.

Commit cd2f6fb

Browse files
committed
README improvements
1 parent 4d4a542 commit cd2f6fb

File tree

2 files changed

+24
-10
lines changed

2 files changed

+24
-10
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ENV JAVA_HOME="/opt/java/${JAVA_TYPE}-${JAVA_FULL_VERSION}" \
2323
JAVA_TAR="${JAVA_TYPE}-${JAVA_FULL_VERSION}_linux-x64_bin.tar.gz"
2424

2525
# Download oracle jdk -> extract it -> cleanup -> add app user & group
26-
# You can use USER 'app' for you app
26+
# You can use USER called 'app' for your application
2727
RUN cd /tmp \
2828
&& apt-get update \
2929
&& apt-get install -y wget \

README.md

+23-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,38 @@
11
# Docker Debian Oracle JDK 10
2-
Docker Debian Slim image with cleaned Oracle JDK 10 Update 1 (239MB for stretch)
2+
Docker Debian Slim image with cleaned Oracle JDK 10 Update 1 (305MB for stretch)
33

44
You must accept the [Oracle Binary Code License Agreement for Java SE](http://www.oracle.com/technetwork/java/javase/terms/license/index.html) to use this image.
55

66
## Image
77
Image contains cleaned [Oracle JDK 10.0.1](http://www.oracle.com/technetwork/java/javase/downloads/jdk10-downloads-4416644.html).
8-
JDK is provided without *desktop, sources* and other unnecessary stuff except JVM.
9-
So image have all *JVM* parts to run *Java applications* in Docker containers.
8+
JDK is provided without *desktop, sources* and other unnecessary stuff except JVM and javac. Some tags have mission control included as well (check image section below).
9+
So image have all *JVM* parts to run and compile *Java applications* in Docker containers.
1010

1111
There are two base images:
1212

13-
#### Latest
14-
Uses base image [Debian Sid Slim](https://hub.docker.com/_/debian/) (63.3MB)
13+
#### *latest*
14+
Uses base image [Debian Sid Slim](https://hub.docker.com/_/debian/) *(63.3MB)*
1515

16-
Image size with JDK (254MB)
16+
Image size with JDK *(319MB)*
1717

18-
#### Stretch
19-
Uses base image [Debian Stretch Slim](https://hub.docker.com/_/debian/) (55.3MB)
18+
#### *stretch*
19+
Uses base image [Debian Stretch Slim](https://hub.docker.com/_/debian/) *(55.3MB)*
2020

21-
Image size with JDK (239MB)
21+
Image size with JDK *(305MB)*
22+
23+
### Mission Control
24+
25+
Images below contains [mission control](http://www.oracle.com/technetwork/java/javaseproducts/mission-control/java-mission-control-1998576.html) as well:
26+
27+
#### *latest-mission*
28+
Uses base image [Debian Sid Slim](https://hub.docker.com/_/debian/) *(63.3MB)*
29+
30+
Image size with JDK and Mission Control *(378MB)*
31+
32+
#### *stretch-mission*
33+
Uses base image [Debian Stretch Slim](https://hub.docker.com/_/debian/) *(55.3MB)*
34+
35+
Image size with JDK and Mission Control *(364MB)*
2236

2337
## Usage
2438
Image have docker *USER* named **app** so you can use it for your application.

0 commit comments

Comments
 (0)