public code v1

This commit is contained in:
Francisco Jesús Martínez Mimbrera
2026-05-23 00:32:57 +02:00
commit 759a8968a2
4357 changed files with 163763 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
version: '3.8'
services:
# ─── Compilar el proyecto ────────────────────────────────────────────────────
build:
image: maven:3.8.6-eclipse-temurin-11
platform: linux/amd64
volumes:
- .:/project
- maven-cache:/root/.m2
working_dir: /project
command: mvn clean install -Dmaven.test.skip=true
# ─── Ejecutar: abre http://localhost:6080 en el navegador ───────────────────
run:
build:
context: .
dockerfile: Dockerfile.run
platform: linux/amd64
volumes:
- "./releng/flintstones.application.product/target/products/RCP product/linux/gtk/x86_64:/app:ro"
ports:
- "6080:6080"
restart: unless-stopped
volumes:
maven-cache: