Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ########@DWSNAS02:~/azerothcore-wotlk$ sudo docker-compose up -d
- Password:
- Building ac-db-import
- Sending build context to Docker daemon 868MB
- Step 1/75 : ARG UBUNTU_VERSION=22.04 # lts
- Step 2/75 : ARG TZ=Etc/UTC
- Step 3/75 : FROM ubuntu:$UBUNTU_VERSION as skeleton
- ---> e4c58958181a
- Step 4/75 : ARG DOCKER=1
- ---> Using cache
- ---> 5bb5b5e2f6f4
- Step 5/75 : ARG DEBIAN_FRONTEND=noninteractive
- ---> Using cache
- ---> 93704471b320
- Step 6/75 : ENV TZ=$TZ
- ---> Using cache
- ---> 09d00963283e
- Step 7/75 : ENV AC_FORCE_CREATE_DB=1
- ---> Using cache
- ---> 39c0456978e0
- Step 8/75 : RUN mkdir -pv /azerothcore/bin /azerothcore/data /azerothcore/deps /azerothcore/env/dist/bin /azerothcore/env/dist/data/Cameras /azerothcore/env/dist/data/dbc /azerothcore/env/dist/data/maps /azerothcore/env/dist/data/mmaps /azerothcore/env/dist/data/vmaps /azerothcore/env/dist/logs /azerothcore/env/dist/temp /azerothcore/env/dist/etc /azerothcore/modules /azerothcore/src /azerothcore/build
- ---> Using cache
- ---> 44e88e9f0cf0
- Step 9/75 : RUN apt-get update && apt-get install -y tzdata ca-certificates && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && dpkg-reconfigure --frontend noninteractive tzdata
- ---> Using cache
- ---> 582404f30c58
- Step 10/75 : WORKDIR /azerothcore
- ---> Using cache
- ---> ce13cb533b79
- Step 11/75 : FROM skeleton as build
- ---> ce13cb533b79
- Step 12/75 : ARG CTOOLS_BUILD="all"
- ---> Using cache
- ---> b41b8dd3128d
- Step 13/75 : ARG CTYPE="RelWithDebInfo"
- ---> Using cache
- ---> 2b774ba85787
- Step 14/75 : ARG CCACHE_CPP2="true"
- ---> Using cache
- ---> 6e748fc917ed
- Step 15/75 : ARG CSCRIPTPCH="OFF"
- ---> Using cache
- ---> 36248d6936df
- Step 16/75 : ARG CSCRIPTS="static"
- ---> Using cache
- ---> 01551622da77
- Step 17/75 : ARG CMODULES="static"
- ---> Using cache
- ---> 4b1542d2e4cf
- Step 18/75 : ARG CSCRIPTS_DEFAULT_LINKAGE="static"
- ---> Using cache
- ---> f05e2a8f2d56
- Step 19/75 : ARG CWITH_WARNINGS="ON"
- ---> Using cache
- ---> a1db162dd86d
- Step 20/75 : ARG CMAKE_EXTRA_OPTIONS=""
- ---> Using cache
- ---> 3ee060247e19
- Step 21/75 : ARG GIT_DISCOVERY_ACROSS_FILESYSTEM=1
- ---> Using cache
- ---> 08e28a4adb72
- Step 22/75 : ARG CCACHE_DIR="/ccache"
- ---> Using cache
- ---> db9b859e9c7e
- Step 23/75 : ARG CCACHE_MAXSIZE="1000MB"
- ---> Using cache
- ---> 9de56b2b9b15
- Step 24/75 : ARG CCACHE_SLOPPINESS="pch_defines,time_macros,include_file_mtime"
- ---> Using cache
- ---> 43ff528580b5
- Step 25/75 : ARG CCACHE_COMPRESS=""
- ---> Using cache
- ---> 4a0f812a7d21
- Step 26/75 : ARG CCACHE_COMPRESSLEVEL="9"
- ---> Using cache
- ---> fa2b8e68c55a
- Step 27/75 : ARG CCACHE_COMPILERCHECK="content"
- ---> Using cache
- ---> c2eb822bcf1a
- Step 28/75 : ARG CCACHE_LOGFILE=""
- ---> Using cache
- ---> c24046637589
- Step 29/75 : RUN apt-get update && apt-get install -y --no-install-recommends build-essential ccache libtool cmake-data make cmake clang git lsb-base curl unzip default-mysql-client openssl default-libmysqlclient-dev libboost-all-dev libssl-dev libmysql++-dev libreadline-dev zlib1g-dev libbz2-dev libncurses5-dev && rm -rf /var/lib/apt/lists/*
- ---> Using cache
- ---> d4afcebaf98c
- Step 30/75 : COPY CMakeLists.txt /azerothcore/CMakeLists.txt
- ---> Using cache
- ---> dbdb8026231d
- Step 31/75 : COPY conf /azerothcore/conf
- ---> Using cache
- ---> 019c251b10b0
- Step 32/75 : COPY deps /azerothcore/deps
- ---> Using cache
- ---> 30f76dbc75f4
- Step 33/75 : COPY src /azerothcore/src
- ---> Using cache
- ---> 3f63ff280194
- Step 34/75 : COPY modules /azerothcore/modules
- ---> Using cache
- ---> a17e96fa772d
- Step 35/75 : ARG CACHEBUST=1
- ---> Using cache
- ---> 11e342375ce1
- Step 36/75 : WORKDIR /azerothcore/build
- ---> Using cache
- ---> 3559d5454b1c
- Step 37/75 : RUN --mount=type=cache,target=/ccache,sharing=locked --mount=type=bind,target=/azerothcore/.git,source=.git git config --global --add safe.directory /azerothcore && cmake /azerothcore -DCMAKE_INSTALL_PREFIX="/azerothcore/env/dist" -DAPPS_BUILD="all" -DTOOLS_BUILD="$CTOOLS_BUILD" -DSCRIPTS="$CSCRIPTS" -DMODULES="$CMODULES" -DWITH_WARNINGS="$CWITH_WARNINGS" -DCMAKE_BUILD_TYPE="$CTYPE" -DCMAKE_CXX_COMPILER="clang++" -DCMAKE_C_COMPILER="clang" -DCMAKE_CXX_COMPILER_LAUNCHER="ccache" -DCMAKE_C_COMPILER_LAUNCHER="ccache" -DBoost_USE_STATIC_LIBS="ON" && cmake --build . --config "$CTYPE" -j $(($(nproc) + 1)) && cmake --install . --config "$CTYPE"
- ---> Using cache
- ---> fa8d6ee815f7
- Step 38/75 : FROM skeleton as runtime
- ---> ce13cb533b79
- Step 39/75 : ARG USER_ID=1000
- ---> Using cache
- ---> d6df72e12295
- Step 40/75 : ARG GROUP_ID=1000
- ---> Using cache
- ---> 1c6107ef1050
- Step 41/75 : ARG DOCKER_USER=acore
- ---> Using cache
- ---> c87b9597cdb7
- Step 42/75 : ENV ACORE_COMPONENT=undefined
- ---> Using cache
- ---> bb87a1667699
- Step 43/75 : RUN apt-get update && apt-get install -y --no-install-recommends libmysqlclient21 libreadline8 gettext-base default-mysql-client && rm -rf /var/lib/apt/lists/*
- ---> Using cache
- ---> 3844a6b2c61f
- Step 44/75 : COPY --from=build /azerothcore/env/dist/etc/ /azerothcore/env/ref/etc
- ---> Using cache
- ---> 6c0fa98dcb37
- Step 45/75 : VOLUME /azerothcore/env/dist/etc
- ---> Using cache
- ---> 9a13c95d1d72
- Step 46/75 : ENV PATH="/azerothcore/env/dist/bin:$PATH"
- ---> Using cache
- ---> 2c046b44b7f9
- Step 47/75 : RUN groupadd --gid "$GROUP_ID" "$DOCKER_USER" && useradd -d /azerothcore --uid "$USER_ID" --gid "$GROUP_ID" "$DOCKER_USER" && passwd -d "$DOCKER_USER" && chown -R "$DOCKER_USER:$DOCKER_USER" /azerothcore
- ---> Using cache
- ---> d0f7f363d62b
- Step 48/75 : COPY apps/docker/entrypoint.sh /entrypoint.sh
- ---> Using cache
- ---> 2916ba1e5aca
- Step 49/75 : RUN chmod -v +x /entrypoint.sh
- ---> Using cache
- ---> 81cdaf85c4a1
- Step 50/75 : USER $DOCKER_USER
- ---> Using cache
- ---> 4ecb161a5643
- Step 51/75 : ENTRYPOINT ["/entrypoint.sh"]
- ---> Using cache
- ---> 5e3c65f60281
- Step 52/75 : FROM runtime as authserver
- ---> 5e3c65f60281
- Step 53/75 : LABEL description "AzerothCore Auth Server"
- ---> Using cache
- ---> 85fddf189b1a
- Step 54/75 : ENV ACORE_COMPONENT=authserver
- ---> Using cache
- ---> cf1e14ee6aa9
- Step 55/75 : ENV AC_UPDATES_ENABLE_DATABASES=0
- ---> Using cache
- ---> 175519d0246a
- Step 56/75 : ENV AC_DISABLE_INTERACTIVE=1
- ---> Using cache
- ---> e4b0a011c2d2
- Step 57/75 : ENV AC_CLOSE_IDLE_CONNECTIONS=0
- ---> Using cache
- ---> 1f52446672e8
- Step 58/75 : COPY --chown=$DOCKER_USER:$DOCKER_USER --from=build /azerothcore/env/dist/bin/authserver /azerothcore/env/dist/bin/authserver
- unable to convert uid/gid chown string to host mapping: can't find uid for user : no such user:
- ERROR: Service 'ac-db-import' failed to build
- ########@DWSNAS02:~/azerothcore-wotlk$
Advertisement
Add Comment
Please, Sign In to add comment