mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
minecraft-server: fixing quotes so volume will create correctly
Single quotes don't work for VOLUME, but double quotes do.
This commit is contained in:
parent
7b58d59cef
commit
cc3730e5a9
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ EXPOSE 25565
|
|||
ADD start.sh /start
|
||||
ADD start-minecraft.sh /start-minecraft
|
||||
|
||||
VOLUME ['/data']
|
||||
VOLUME ["/data"]
|
||||
ADD server.properties /tmp/server.properties
|
||||
WORKDIR /data
|
||||
|
||||
|
|
Loading…
Reference in a new issue