[DiscordArchive] what are you getting?
[DiscordArchive] what are you getting?
Archived author: IceMachine • Posted: 2021-12-13T21:18:11.857000+00:00
Original source
what are you getting?
Archived author: IceMachine • Posted: 2021-12-13T21:18:37.731000+00:00
Original source
I found out that a couple of the applications in the other method required the privileged flag.
Archived author: IceMachine • Posted: 2021-12-13T21:18:48.554000+00:00
Original source
I think that was the root of my issue.
Archived author: Yello • Posted: 2021-12-13T21:18:54.532000+00:00
Original source
it's just looping and looping saying something about operation not permitted, I think that might be the issue too
Archived author: Yello • Posted: 2021-12-13T21:19:02.768000+00:00
Original source
ac-authserver_1 | Deno is upgrading to version 1.9.1
ac-authserver_1 | Archive: /tmp/.tmpAnXvmp/deno.zip
ac-authserver_1 | inflating: deno
ac-authserver_1 | error: Operation not permitted (os error 1)
ac-authserver_1 | Installing Deno...
######################################################################## 100.0%##O=# #
ac-authserver_1 | Archive: /azerothcore/deps/deno/bin/deno.zip
ac-authserver_1 | error: cannot create /azerothcore/deps/deno/bin/deno
ac-authserver_1 | Operation not permitted
ac-authserver_1 | Deno version check:
ac-authserver_1 | /azerothcore/apps/bash_shared/deno.sh: line 18: ./deps/deno/bin/deno: No such file or directory
ac-authserver_1 | Installing Deno...
######################################################################## 100.0%#=#=-
Archived author: Yello • Posted: 2021-12-13T21:19:04.453000+00:00
Original source
loop and loop
Archived author: Yello • Posted: 2021-12-13T21:19:49.550000+00:00
Original source
and it looks like it's cycling on each container
![[Image: unknown.png?ex=690c683c&is=690b16bc&hm=1...2ec5fc1ac&]](https://cdn.discordapp.com/attachments/535208956449128490/920062509191401472/unknown.png?ex=690c683c&is=690b16bc&hm=12156e6a9451107a14f0b93b8fb5fb437568a7b23b031ac056e88b82ec5fc1ac&)
Archived author: Yello • Posted: 2021-12-13T21:19:56.263000+00:00
Original source
![[Image: unknown.png?ex=690c683c&is=690b16bc&hm=1...2ec5fc1ac&]](https://cdn.discordapp.com/attachments/535208956449128490/920062509191401472/unknown.png?ex=690c683c&is=690b16bc&hm=12156e6a9451107a14f0b93b8fb5fb437568a7b23b031ac056e88b82ec5fc1ac&)
Archived author: IceMachine • Posted: 2021-12-13T21:19:56.660000+00:00
Original source
Yeah so, a little different than mine but one second let me give my notes...
Archived author: IceMachine • Posted: 2021-12-13T21:20:47.602000+00:00
Original source
```md
# Deploy Docker AzerothCore
## Grab Git Repo
git clone https://github.com/azerothcore/azerothcore-wotlk.git
cd azerothcore-wotlk
cp ./conf/dist/env.docker .env
## Edit the .env file if you need to change anything. In my case the external port...
sed -i 's/DOCKER_DB_EXTERNAL_PORT.*$/DOCKER_DB_EXTERNAL_PORT=3307/g' .env
sed -i 's/DOCKER_USER=.*$/DOCKER_USER=acore/g' .env
sed -i 's/DOCKER_USER_ID=.*$/DOCKER_USER_ID=1001/g' .env
sed -i 's/DOCKER_GROUP_ID=.*$/DOCKER_GROUP_ID=1001/g' .env
## Add this otherwise you get a nag in the log...
cp ./conf/dist/config.sh ./conf/config.sh
## Pull client Data, NOTE: This command should be executed only at the first installation and when there's a new version of the client-data available
docker-compose run --rm ac-build bash acore.sh client-data
## Full blown compile and intial build.
docker-compose --profile local build --parallel && docker image prune -f && docker-compose run --rm ac-build bash apps/docker/docker-build-dev.sh
## If you don't need to run SQL updates you can just compile
docker-compose build --parallel ac-build && docker image prune -f && docker-compose run --rm ac-build bash apps/docker/docker-build-dev.sh 0
## Start the App
docker-compose --profile app up
## Start the App and detach
docker-compose --profile app up -d
## Nuke it all
docker-compose down --rmi all -v
```