Hello,
today I have tried to create a new minecraft docker container in OMV.
Everything is running except the mount point.
In the past I created different docker container and all of them had the right mounting point, only this one not.
Here is the docker compose file that I use to start the container:
version: "3.8"
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
networks:
VLAN:
ipv4_address: 192.168.178.11
environment:
EULA: "TRUE"
volumes:
- ./minecraft:/minecraft
networks:
VLAN:
external: true
name: "VLAN"
Usually the mounting point should be in the container folder but every time I start the server it creates a new volume, here are some examples from the last 3 restarts:
compared to my other container:
I would like to have the mounted volume in the container folder like for the "asa_server" and the "pihole" container but instead it always creates a new folder with a long folder name.
I hopye someone can help me.
Thanks in advanced.