- Initial release,

- Use based on server-mga9:1.1.2 image,
- OpenJVM 17.
This commit is contained in:
Arnaud G. GIBERT 2024-08-28 22:44:12 +02:00
commit 0ac631afaf
6 changed files with 105 additions and 0 deletions

30
.env Normal file
View File

@ -0,0 +1,30 @@
# Rx3 Java Mageia-9 Docker Image
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Global Settings
#-------------------------------------------------------------------------------
IMG_ORG="rx3"
IMG_REGISTRY="docker.xor.rx3:5000"
IMG_URL_PREFIX="${IMG_REGISTRY}/${IMG_ORG}"
#-------------------------------------------------------------------------------
# Image Settings
#-------------------------------------------------------------------------------
IMG_NAME="php-apache-mga9"
IMG_FULL_NAME="Rx3 Java Mageia-9 Docker Image"
IMG_VERSION="1.0.0"
IMG_URL="${IMG_URL_PREFIX}/${IMG_NAME}:${IMG_VERSION}"
IMG_MAINTAINER='"Arnaud G. GIBERT" <arnaud@rx3.net>'
#-------------------------------------------------------------------------------
# User Settings
#-------------------------------------------------------------------------------

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*~
*.old

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
# Rx3 Java Mageia-9 Docker Image
#-------------------------------------------------------------------------------
ARG IMG_URL_PREFIX="rx3"
FROM ${IMG_URL_PREFIX}/server-mga9:1.1.2
ARG IMG_NAME
ARG IMG_FULL_NAME
ARG IMG_VERSION
ARG IMG_MAINTAINER
LABEL org.rx3.${IMG_NAME}.name=${IMG_FULL_NAME}
LABEL org.rx3.${IMG_NAME}.version=${IMG_VERSION}
LABEL org.rx3.${IMG_NAME}.maintainer=${IMG_MAINTAINER}
LABEL maintainer=${IMG_MAINTAINER}
RUN urpmi --force java-17-openjdk-headless lib64rocm-opencl-runtime5.7

18
ReadMe.txt Normal file
View File

@ -0,0 +1,18 @@
Welcome to Rx3/Java-Mga9 docker image!
This is project aims to build a Java + Mageia 9 docker image used by others Rx3 packaging projects.
Features:
- Curtently based on rx3/server-mga9:1.1.2 image,
- OpenJVM 17.
Enjoy it!
Your Rx3 Team.
--
arnaud@rx3.net
https://git.rx3.org/gitea/rx3/java-mga9

7
ReleaseNotes.txt Normal file
View File

@ -0,0 +1,7 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3/Java-Mga9 V 1.0.0 - A. GIBERT - 2024/08/28
------------------------------------------------------------------------------------------------------------------------------------
- Initial release,
- Use based on server-mga9:1.1.2 image,
- OpenJVM 17.

28
compose.yaml Normal file
View File

@ -0,0 +1,28 @@
# Rx3 PHP Apache Mageia-9 Docker Image
#-------------------------------------------------------------------------------
name: ${IMG_NAME}
services:
server:
container_name: ${IMG_NAME}
image: ${IMG_URL}
build:
context: .
args:
IMG_NAME: "${IMG_NAME}"
IMG_FULL_NAME: "${IMG_FULL_NAME}"
IMG_VERSION: "${IMG_VERSION}"
IMG_MAINTAINER: "${IMG_MAINTAINER}"
IMG_URL_PREFIX: "${IMG_URL_PREFIX}"
restart: unless-stopped
network_mode: bridge
ports:
- "127.0.0.1:9014:9001"