[DiscordArchive] What happened for the crash? do you have any modules installed?
[DiscordArchive] What happened for the crash? do you have any modules installed?
Archived author: mynameismeat • Posted: 2023-03-05T15:46:06.707000+00:00
Original source
That's a good point. Checking
Archived author: mynameismeat • Posted: 2023-03-05T15:55:28.441000+00:00
Original source
remove `:ro` at the end of this line
https://github.com/azerothcore/azerothco...C8-L196C67
[Embed: azerothcore-wotlk/docker-compose.yml at master · azerothcore/azerot...]
Complete Open Source and Modular solution for MMO. Contribute to azerothcore/azerothcore-wotlk development by creating an account on GitHub.
https://github.com/azerothcore/azerothco...ompose.yml
Archived author: mynameismeat • Posted: 2023-03-05T16:05:15.202000+00:00
Original source
the "default" way the docker setup works is that it creates containers without the actually azerothcore binaries installed, and then it copies in the binaries from another container build at runtime as readonly. Not exactly the most idiomatic way to use containers but it works
by removing the `:ro`, you should be good to write to that directory.
After you get a crash dump, you can copy it out with this command
```bash
docker run -it --rm \
-v azerothcore-wotlk_ac-bin-dev:/in \
-v "$(pwd)/out:/out" \
ubuntu bash -c "cp -rv /in/* /out && chown -R 1000:1000 /out"
```
Archived author: ut3usw • Posted: 2023-03-05T18:13:41.073000+00:00
Original source
THX! It works. Looks like mod-transmog issue: https://gist.github.com/assada/cf58394b7...272d441b52
[Embed: gist:cf58394b7f0acabe40e376272d441b52]
GitHub Gist: instantly share code, notes, and snippets.
https://gist.github.com/assada/cf58394b7...272d441b52