Tag Archives: docker

Installing Docker and Docker-Compose on CentOS with Ansible

Here is the fresh installation of docker on CentOS. You can change the docker-compose verison to the latest. Just create a yml file with following lines. – name: install docker on fresh server hosts: localhost gather_facts: false tasks: – name: Get some utils installed and repo added shell: yum install -y yum-utils; yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo Read More

Posted in Docker, Linux | Tagged , , , , | Leave a comment

How to install Oracle Database 23c Developer Edition on Docker

Drop into the command line and type the following command. It’ll take a couple of minutes to complete. docker pull container-registry.oracle.com/database/free:latest Now, with the image downloaded, we are ready to run Docker. You can do this by using the following command.

Posted in Database | Tagged , , , | Leave a comment