This commit is contained in:
Adam Shamblin 2022-11-22 11:40:04 -07:00
parent 6aae099391
commit db91e0fa52
No known key found for this signature in database
GPG Key ID: 22E0BC8E6B4D8C8E
3 changed files with 3 additions and 1 deletions

View File

@ -10,5 +10,5 @@ earthly:
- linux
- amd64
script:
- earthly --ci -P --no-cache +package-linux
- earthly --ci -P --no-cache -i +package-linux

View File

@ -3,6 +3,7 @@
docker run -d --restart always \
--privileged \
--name earthly-buildkit \
--hostname earthly-buildkit \
--network host \
-t -p 8372:8372 \
-v earthly-tmp:/tmp/earthly:rw \

View File

@ -5,6 +5,7 @@ install () {
docker run -d --name gitlab-runner --restart always \
-v /srv/gitlab-runner/config:/etc/gitlab-runner \
-v /var/run/docker.sock:/var/run/docker.sock \
--hostname="gitlab-runner" \
--network="host" \
gitlab/gitlab-runner:latest
}