mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-10 04:37:23 +01:00
feat: Auto-update docker-compose.yml (#472)
Update docker-compose.yml with the latest stable version. Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
ba5670692e
commit
d634a84e0f
@ -4,15 +4,15 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
args:
|
args:
|
||||||
# Check buildinfo.json for supported versions and SHAs
|
# Check buildinfo.json for supported versions and SHAs
|
||||||
# https://github.com/factoriotools/factorio-docker/blob/master/buildinfo.json
|
# https://github.com/factoriotools/factorio-docker/blob/master/buildinfo.json
|
||||||
- VERSION=1.1.61
|
- VERSION=1.1.87
|
||||||
- SHA256=68e4ac8d33b195701c15a23e3d8e65676ef8be25f140657678122f211c60b659
|
- SHA256=60b3884b6dad1f4c7b30b7ef2b63619ff4a3204ac7fd894cf09d382b349857cc
|
||||||
ports:
|
ports:
|
||||||
- "34197:34197/udp"
|
- "34197:34197/udp"
|
||||||
- "27015:27015/tcp"
|
- "27015:27015/tcp"
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/factorio:/factorio
|
- /opt/factorio:/factorio
|
||||||
# environment:
|
# environment:
|
||||||
# - PUID=1000
|
# - PUID=1000
|
||||||
# - PGID=1000
|
# - PGID=1000
|
||||||
|
@ -89,11 +89,17 @@ done && printf "%s\n\n" "$tags"))
|
|||||||
|
|
||||||
perl -i -0777 -pe "s/<!-- start autogeneration tags -->.+<!-- end autogeneration tags -->/<!-- start autogeneration tags -->$readme_tags<!-- end autogeneration tags -->/s" README.md
|
perl -i -0777 -pe "s/<!-- start autogeneration tags -->.+<!-- end autogeneration tags -->/<!-- start autogeneration tags -->$readme_tags<!-- end autogeneration tags -->/s" README.md
|
||||||
|
|
||||||
|
# Replace VERSION and SHA256 args in docker-compose.yaml with latest stable values.
|
||||||
|
docker_compose_path="docker/docker-compose.yml"
|
||||||
|
sov="VERSION=${stable_online_version}" yq -i '.services.factorio.build.args[0] = env(sov)' "$docker_compose_path"
|
||||||
|
sha="SHA256=${stable_sha256}" yq -i '.services.factorio.build.args[1] = env(sha)' "$docker_compose_path"
|
||||||
|
|
||||||
git config user.name github-actions[bot]
|
git config user.name github-actions[bot]
|
||||||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
||||||
|
|
||||||
git add buildinfo.json
|
git add buildinfo.json
|
||||||
git add README.md
|
git add README.md
|
||||||
|
git add docker/docker-compose.yml
|
||||||
git commit -a -m "Auto Update Factorio to stable version: ${stable_online_version} experimental version: ${experimental_online_version}"
|
git commit -a -m "Auto Update Factorio to stable version: ${stable_online_version} experimental version: ${experimental_online_version}"
|
||||||
|
|
||||||
git tag -f latest
|
git tag -f latest
|
||||||
|
Loading…
Reference in New Issue
Block a user