Update and disable factorio server
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Paul Brinkmeier 2023-07-17 15:33:59 +02:00
parent 0510bf6e90
commit 9bd2f16dbb
2 changed files with 4 additions and 3 deletions

View File

@ -54,7 +54,8 @@
dest: /etc/pbri/docker/{{ item.name }}/.env
# Files should inaccessible to non-root users.
mode: u=rw,g=,o=
# This is true by default but I put it here anyways to emphasize what's happening
# This is true by default but I put it here anyways
# to emphasize what's happening
decrypt: true
# Not quite happy with all the seperate loops yet.
loop:
@ -63,7 +64,7 @@
- name: drone
state: present
- name: factorio
state: absent
state: present
- name: gitea
state: present
- name: Create directory for docker volumes

View File

@ -1,4 +1,4 @@
FROM factoriotools/factorio:1.1.68
FROM factoriotools/factorio:1.1.80
COPY server-settings.json /server-settings.json
ENTRYPOINT [ "/bin/sh", "-c", "mkdir -p /factorio/config && envsubst < /server-settings.json > /factorio/config/server-settings.json && exec /docker-entrypoint.sh" ]