Adding Docker Compose to runner.

This commit is contained in:
Alejandro Lembke Barrientos 2023-11-12 00:01:09 +00:00
parent c9f25f35fc
commit 7062c0ee89
2 changed files with 7 additions and 1 deletions

View File

@ -37,6 +37,12 @@ VOLUME /var/lib/docker
#RUN sudo usermod -aG docker docker
#Finishing Installing Docker
#Install Docker Compose
RUN sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
RUN sudo chmod +x /usr/local/bin/docker-compose
RUN docker-compose --version
#Finishing Installing Docker Compose
# install python and the packages the your code depends on along with jq so we can parse JSON
# add additional packages as necessary
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \

View File

@ -1,3 +1,3 @@
# Docker Github Action Runner
## Version 1.0.14
## Version 1.0.15