Pages
(Move to ...)
Home
Info
HowTo
Code
Publications
Finance
Links
Legal
▼
Showing posts with label
docker
.
Show all posts
Showing posts with label
docker
.
Show all posts
21/12/2021
[Docker] Include Dockerfile in another Dockerfile
›
Docker does not support including a Dockerfile in another Dockerfile, luckily the Dockerfile plus project comes to the rescue. Simply setup...
[Docker] Redirect app log file to container output
›
When running applications in containers, we might have log files that are relevant to monitor but are not automatically printed with the con...
[Docker] Set Java UTF-8 encoding
›
Sometimes a Java based app running in a container requires UTF8 encoding. Not all available images enable that by default, this can be fixed...
29/11/2021
[Docker] Multi stage builds
›
I've been recently introduced to a nice Docker feature: multi-stage builds . The idea is simple, if the build is containerized as well, ...
13/10/2021
[Java] Kerberos login and retrieve GSSCredentials from KerberosTicket
›
A scenario that popped up recently was to login a user via Java code to Kerberos and retrieve a GSSCredential object containing the Kerberos...
29/04/2020
[Docker] Move docker directory to different location on NTFS filesystem
›
The default location of docker files (images, volumes, networks, etc) on most distributions is /var/lib/docker This can be easily changed ...
22/02/2020
[Java] Testcontainers copy file to container
›
Once you have your container up and running , you might want to upload some files to it. The outcome of this action is largely dependent on ...
[Java] Testcontainers set container name
›
When you create a new container with testcontainers, you might want to assign it a name so that it's easier to spot when you list all of...
[Java] Testcontainers start container with fixed port binding
›
If you're working in Java, you will likely be using docker in your testing process and quite likely you'll be using docker-compose o...
›
Home
View web version