I've added some plugins and restarted the server, but the plugins are not being recognized. I've validated that the plugins exist in the host directory, but when I actually exec'd into the container and checked the ServerPlugins folder it did not appear that my plugins were copied over.
Relevant portion of my docker-compose:
terraria:
container_name: terraria
image: ryshe/terraria:latest
stdin_open: true # docker run -i
tty: true # docker run -t
environment:
- WORLD_FILENAME=2024.wld
ports:
- 7777:7777
volumes:
- /mediaserver/terraria/world:/root/.local/share/Terraria/Worlds
- /mediaserver/terraria/ServerPlugins:/plugins
restart: unless-stopped
I've added some plugins and restarted the server, but the plugins are not being recognized. I've validated that the plugins exist in the host directory, but when I actually exec'd into the container and checked the ServerPlugins folder it did not appear that my plugins were copied over.
Relevant portion of my docker-compose: