Skip to content
Snippets Groups Projects
Commit 0020357f authored by Jan David Mol's avatar Jan David Mol
Browse files

Install docker & docker-compose properly

parent 166e70ea
No related branches found
No related tags found
No related merge requests found
...@@ -5,4 +5,14 @@ ...@@ -5,4 +5,14 @@
# #
FROM centos:centos8.3.2011 FROM centos:centos8.3.2011
RUN yum -y install make docker # install Docker, see dockers://docs.docker.com/engine/install/centos/
RUN yum install -y yum-utils
RUN yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
RUN yum -y install docker-ce-cli
# install Docker Compose, see https://github.com/docker/compose/releases
RUN yum -y install python3-pip
RUN pip3 install docker-compose
# other dependencies
RUN yum -y install make
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment