Skip to content

Commit

Permalink
Use modern syntax for volume definition in dockerfile
Browse files Browse the repository at this point in the history
Fixes issue where recreation of container may fail while trying to interpret this for its mount points
  • Loading branch information
mrdaemon authored Dec 5, 2024
1 parent 520930b commit 0ee5c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ COPY files/config.ini config/config.ini
COPY files/run.sh .
RUN chmod +x ./run.sh

VOLUME [${FACTORIO_VOLUME}]
VOLUME ${FACTORIO_VOLUME}

EXPOSE ${FACTORIO_PORT}/udp ${FACTORIO_RCON_PORT}/tcp

Expand Down

0 comments on commit 0ee5c41

Please sign in to comment.