Replies: 1 comment
-
It's not possible at that this point. Can you clarify why you would want to? Im also wondering why you're not mapping |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey,
I want my server to copy back the plugins folder (with for example created config files) from the container /data/plugins back to my host ./plugins folder?
Does anyone know how can I achieve this?
Thanks.
Here is my docker-compose.yml
`version: "3"
services:
mc:
image: itzg/minecraft-server
ports:
- 25565:25565
environment:
EULA: "TRUE"
VERSION: "1.19.2"
TYPE: "PAPER"
tty: true
stdin_open: true
restart: unless-stopped
volumes:
- "./plugins:/plugins"
`
Beta Was this translation helpful? Give feedback.
All reactions