mirror of
https://github.com/aleleba/docker-github-actions-runner.git
synced 2025-07-03 22:38:17 -06:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
7062c0ee89 | |||
c9f25f35fc | |||
6aa34d9898 |
@ -37,6 +37,12 @@ VOLUME /var/lib/docker
|
|||||||
#RUN sudo usermod -aG docker docker
|
#RUN sudo usermod -aG docker docker
|
||||||
#Finishing Installing 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
|
# install python and the packages the your code depends on along with jq so we can parse JSON
|
||||||
# add additional packages as necessary
|
# add additional packages as necessary
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# Docker Github Action Runner
|
# Docker Github Action Runner
|
||||||
|
|
||||||
## Version 1.0.12
|
## Version 1.0.15
|
@ -4,6 +4,10 @@ if [[ -z "${HOME_USER}" ]]; then
|
|||||||
HOME_USER="docker"
|
HOME_USER="docker"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#Ensure that the iptables legacy binary is used instead of the iptables-nft variant
|
||||||
|
sudo update-alternatives --set iptables /usr/sbin/iptables-legacy
|
||||||
|
sudo update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
|
||||||
|
|
||||||
# Ensure that all nodes in /dev/mapper correspond to mapped devices currently loaded by the device-mapper kernel driver
|
# Ensure that all nodes in /dev/mapper correspond to mapped devices currently loaded by the device-mapper kernel driver
|
||||||
dmsetup mknodes
|
dmsetup mknodes
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user