-
Trivadis Developer Blog
This is the publication playground for these guys from OIO Trivadis, the Trivadis Group`s Java experts.
Tag cloud
Agile Methods and development Atlassian Tools Build, config and deploy Did you know? Eclipse Universe Groovy and Grails Java and Quality Java Basics Java EE Java modularization Java Persistence Java Runtimes - VM, Appserver & Cloud Java Web Frameworks MDSD Open Source BI Other languages for the Java VM Politics Security SOA / Webservices Spring Universe Web as a Platform XML Universe
Tag Archives: Docker
Optimale Java-Laufzeitumgebungen in der Cloud
Die Mehrheit der Cloud-Anbieter stellen ihre Dienste nach verschiedenen Cloud-Modellen bereit. IaaS, Paas, CaaS und FaaS sind die im Moment zu verzeichnenden Hauptmodelle. Sie alle bestehen unter der Haube nur aus Tausenden von Servern, Festplatten, Routern und Kabeln. Sie fügen … Continue reading
Posted in Java Runtimes - VM, Appserver & Cloud
Tagged AppCDS, Docker, GraalVM, JDeps, jlinker, jvm, serverless, Substrate VM
Leave a comment
A full CI environment with Docker 2/2
In part 1 of this blog post we already set up quite some development environment. We have a remote source code management server to work with. A repository manager to handle our dependencies and additionally implemented a quality check. However, … Continue reading
Posted in Build, config and deploy
Tagged continuous integration, Docker, git, jenkins, Windows Subsystem for Linux
Leave a comment
A full CI environment with Docker 1/2
In my recent blog posts I talked about using Docker to build and deploy an image to the Azure cloud. In later posts I advertised to check out WSL2 as your new Docker environment. Today I want to show you … Continue reading
Posted in Build, config and deploy
Tagged continuous integration, Docker, Windows Subsystem for Linux
1 Comment
Re-deploy your containerized Java application on Azure
In my previous post a while ago I showed you how to deploy your dockerized Java application on Azure. It was a step-by-step introduction switching from browser to IDE, to command line (Docker CLI or Azure CLI), to the Azure … Continue reading
Testcontainers – das Schweizer Taschenmesser der Integrationstests
Testcontainers Der Einsatz von Container-Technologien wie beispielsweise Docker hat die Software-Industrie in den vergangenen Jahren revolutioniert. Anstatt durch den Betrieb Binärartefakte installieren zu lassen, kann getreu dem DevOps-Gedanken einmalig ein Image mitsamt der notwendigen Ablaufumgebung (z. B. JDK, Application Server, … Continue reading
How to run a containerized Java application in the cloud on Microsoft Azure
My intention for this blog post was to see how fast could I, with basically zero practical cloud experience, deploy a Java application in just that. For this purpose I decided to go for the Azure Cloud Services. Additionally, I … Continue reading
What is Docker Compose? How to use it?
When you use Docker and you have to handle many different containers, their management is complicated. You need to manage the configuration and the functioning of each container separately. When you need to use your containers in a specific environment, … Continue reading