Oracle Database 23c on a Mac with an M-Series Chip
Starting Position I got my MacBook Pro 16″ with an Apple M1 Max chip with 10 cores, 64 GB RAM and 4 TB disk in November 2021. At that time, the M1 chip had already been on the market for a year and I knew…
How to handover your public endpoint with docker-compose and ECS
Sometimes the local name resolution from docker-compose or cloud map is not enough. Sometimes you need the public FQDN, like when you startup a Kafka cluster. I’ll show you how you can handover the public DNS name of your loadbalancer to the container with an…
SOUG Day 2019 – Oracle Database in Docker
Today I did have the opportunity to give a presentation on Oracle Database in Docker at the SOUG day in Olten. It was a great opportunity to discuss how Oracle database engineering can be simplified using Docker. Besides the demo the following topics were discussed:…
SOUG Day 2019 – Oracle Database in Docker
Today I did have the opportunity to give a presentation on Oracle Database in Docker at the SOUG day in Olten. It was a great opportunity to discuss how Oracle database engineering can be simplified using Docker. Besides the demo the following topics were discussed:…
SOUG Day 2019 – Oracle Database in Docker
Today I did have the opportunity to give a presentation on Oracle Database in Docker at the SOUG day in Olten. It was a great opportunity to discuss how Oracle database engineering can be simplified using Docker. Besides the demo the following topics were discussed:…
SOUG Day 2019 – Oracle Database in Docker
Today I did have the opportunity to give a presentation on Oracle Database in Docker at the SOUG day in Olten. It was a great opportunity to discuss how Oracle database engineering can be simplified using Docker. Besides the demo the following topics were discussed:…
SOUG Day 2019 – Oracle Database in Docker
Today I did have the opportunity to give a presentation on Oracle Database in Docker at the SOUG day in Olten. It was a great opportunity to discuss how Oracle database engineering can be simplified using Docker. Besides the demo the following topics were discussed:…
Docker copy images between hosts
Copying docker images (import/export) between hosts Sometimes it’s useful to export a local docker image to another host without going through a repository docker save -o [path for generated tar file] [image name] For example : docker save -o mycool-container.tar ufasoli/mycool-container:1.0 You will then need…
docker compose on multiple environments
docker-compose is a pretty cool tool that allows you to bootstrap and run multiple docker containers with 1 configuration file Below is an example docker-compose file for staring a 3 node confluent kafka cluster —version: ‘2’services: zookeeper: image: confluentinc/cp-zookeeper:latest network_mode: host environment: ZOOKEEPER_CLIENT_PORT: 32181 ZOOKEEPER_TICK_TIME:…
DOAG 2018 SIG Security – Oracle Unified Directory on Docker
A couple of days ago I did had the opportunity to give a presentation on Oracle Unified Directory on Docker at the DOAG SIG Security day in Stuttgart. It was a great opportunity to discuss how OUD engineering can be simplified using Docker. As proof…