[DiscordArchive] Last night I deployed using this guide: https://www.azerothcore.org/wiki/install-with-docker#install
[DiscordArchive] Last night I deployed using this guide: https://www.azerothcore.org/wiki/install-with-docker#install
Archived author: kwikmr2 • Posted: 2023-09-06T16:19:19.997000+00:00
Original source
Last night I deployed using this guide: https://www.azerothcore.org/wiki/install...stallation and it worked with no problems (macOS on a MacPro). I'd like to add a mod like: https://www.azerothcore.org/catalogue#/d.../138432861 (AH Bot) but it reads for installing on a standalone server and not Docker. What would I need to be attentive to so that it successfully installs?
[Embed: Install with Docker]
Wiki and Documentation of the AzerothCore project
https://www.azerothcore.org/wiki/install-with-docker
[Embed: AzerothCore]
AzerothCore, the open source MMORPG server application
https://www.azerothcore.org/catalogue
Archived author: Timekiller • Posted: 2023-09-06T17:04:28.940000+00:00
Original source
You'd probably need to modify the Dockerfile in the project repository to include the mod. Then build the container image(s) based on that dockerfile which you'll use to deploy your containers.
Archived author: Timekiller • Posted: 2023-09-06T17:04:42.670000+00:00
Original source
Probably `./apps/docker/Dockerfile`
Archived author: mynameismeat • Posted: 2023-09-06T17:05:00.883000+00:00
Original source
no, you dont need to modify anything
Archived author: mynameismeat • Posted: 2023-09-06T17:05:43.613000+00:00
Original source
you just clone the repo to `modules` (so `modules/mod-ah-bot`) and then run the docker build again (`./acore.sh docker build`)
Archived author: kwikmr2 • Posted: 2023-09-06T17:07:42.747000+00:00
Original source
I'll give that a go.
Archived author: mynameismeat • Posted: 2023-09-06T17:09:24.938000+00:00
Original source
its actually in the doc you linked: https://www.azerothcore.org/wiki/install...ng-modules
Note: there's an incorrect path noted in the section i sent; instead of `azerothcore-wotlk/env/docker/etc/modules` its `azerothcore-wotlk/env/dist/etc/modules`
Archived author: kwikmr2 • Posted: 2023-09-06T17:09:48.532000+00:00
Original source
Just to experiment I just tried to deploy AzerothCore-wotlk-with-NPCBots and during the start up of the containers I go the following:
[+] Running 4/4
✔ Container azerothcore-wotlk-with-npcbots-ac-database-1 Healthy 18.0s
✔ Container azerothcore-wotlk-with-npcbots-ac-db-import-1 Exited 16.8s
✔ Container azerothcore-wotlk-with-npcbots-ac-worldserver-1 Created 0.1s
✔ Container azerothcore-wotlk-with-npcbots-ac-authserver-1 Created 0.1s
service "ac-db-import" didn't complete successfully: exit 1
error: Uncaught (in promise) Error: Failed with error: 1, however,
it's not related to this Deno script directly. An error occurred within
the script called by the command itself
throw new Error(`Failed with error: ${status.code}, however,
^
at Command.<anonymous> (file:///Users/<redacted>/AzerothCore-wotlk-with-NPCBots/apps/docker/docker-cmd.ts:268:17)
at async Promise.all (index 0)
at async main (file:///Users/<redacted>/AzerothCore-wotlk-with-NPCBots/apps/docker/docker-cmd.ts:324:7)
I connected tothe database and noly "sys" is present.
Archived author: mynameismeat • Posted: 2023-09-06T17:14:24.761000+00:00
Original source
the npcbots fork is out of date and doesn't have recent changes which ensure that config files exist
run `cp env/dist/etc/dbimport.conf.dist env/dist/etc/dbimport.conf` (and the same for `worldserver` and `authserver`)
Archived author: kwikmr2 • Posted: 2023-09-06T17:16:00.450000+00:00
Original source
And re-run "./acore.sh docker build"?