I have an AzerothCore Docker setup (standard).
How can I access to local files in order to change my server's configuration?
I searched a bit but I couldn't find any volumes. And when we attach the container when it's running, we only have access to worldserver
console right?
Thanks in advance!
According to the docker-compose.yml file:
- ${DOCKER_VOL_ETC:-./env/docker/etc}:/azerothcore/env/dist/etc
the etc
directory is located in env/dist/etc
by default (unless you override it in your .env
file)