Install Docker and Docker Compose on Oracle Linux

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Today we’re going to see how to install Docker and Docker Compose on Oracle Linux. The first thing we’re going to do is update the system: sudo yum check-update Then we add the Docker repository: dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo Now we install Docker: dnf install docker-ce -y And it will start ... Read more