I have OMV installed with docker and portainer.
I am trying to launch a minecraft server and copy my already existing world and server.properties from another server to it.
I connect to my Minecraft server container using Portainer's console option and run "ls" to see all the files present. After confirming everything is at the root I run "rm -rf world" to delete the "world" directory and all its contents and then run "rm server.properties".
Then I connect to OMV using SSH and run the following commands:
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world Minecraft_server:
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world Minecraft_server:/
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world Minecraft_server:world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world Minecraft_server:/world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:/world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:/world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:/world/
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:/world/.
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:/world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/server.properties Minecraft_server:/
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/server.properties Minecraft_server:/server.properties
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/server.properties Minecraft_server:/server.properties
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/server.properties Minecraft_server:server.properties
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/server.properties Minecraft_server:server.properties
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:/world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:~world
root@OpenMediaVault:~# docker cp /srv/dev-disk-by-uuid-60A88A15A889E9BC/lolztroxxor/world/. Minecraft_server:world
Display More
all of them complete immediately with no message and have no effect.
I test if they are successful by running "ls" on the Minecraft_server container through Poratiner's console option and see no "world" directory or "server.properties" file or anything after my deletions.
What am I doing wrong for the copying to do nothing?