Hello everybuddy,
i have installed docker and Compose on my OMV (6.9.16-1) realted to this manual: https://wiki.omv-extras.org/doku.php?id=omv6:docker_in_omv
To run the Containers i have create the user: docker-user with group users
After this i create a Docker File an paste this in:
Code
services:
minecraft-bedrock-server:
restart: unless-stopped
stdin_open: true
tty: true
container_name: bedrock-server
environment:
- EULA=TRUE
- SERVER_NAME=Phil
- MAX_THREADS=2
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
ports:
- 19132:19132/udp
volumes:
- CHANGE_TO_COMPOSE_DATA_PATH/bedrock-server-phil:/data
image: itzg/minecraft-bedrock-server
Display More
In my Global envirment i have this:
The Container came up und runs and i can access the Server. But then i take a look to the Console of OMV i see that the Process belongs to root not to the new User.
Did i make a misstake? Or is this normal?
Kind regards
Andre