Guest User

Untitled

a guest
Oct 26th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.43 KB | None | 0 0
  1. ########@DWSNAS02:~/azerothcore-wotlk$ sudo docker-compose up -d
  2. Password:
  3. Building ac-db-import
  4. Sending build context to Docker daemon 868MB
  5.  
  6. Step 1/75 : ARG UBUNTU_VERSION=22.04 # lts
  7. Step 2/75 : ARG TZ=Etc/UTC
  8. Step 3/75 : FROM ubuntu:$UBUNTU_VERSION as skeleton
  9. ---> e4c58958181a
  10. Step 4/75 : ARG DOCKER=1
  11. ---> Using cache
  12. ---> 5bb5b5e2f6f4
  13. Step 5/75 : ARG DEBIAN_FRONTEND=noninteractive
  14. ---> Using cache
  15. ---> 93704471b320
  16. Step 6/75 : ENV TZ=$TZ
  17. ---> Using cache
  18. ---> 09d00963283e
  19. Step 7/75 : ENV AC_FORCE_CREATE_DB=1
  20. ---> Using cache
  21. ---> 39c0456978e0
  22. 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
  23. ---> Using cache
  24. ---> 44e88e9f0cf0
  25. 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
  26. ---> Using cache
  27. ---> 582404f30c58
  28. Step 10/75 : WORKDIR /azerothcore
  29. ---> Using cache
  30. ---> ce13cb533b79
  31. Step 11/75 : FROM skeleton as build
  32. ---> ce13cb533b79
  33. Step 12/75 : ARG CTOOLS_BUILD="all"
  34. ---> Using cache
  35. ---> b41b8dd3128d
  36. Step 13/75 : ARG CTYPE="RelWithDebInfo"
  37. ---> Using cache
  38. ---> 2b774ba85787
  39. Step 14/75 : ARG CCACHE_CPP2="true"
  40. ---> Using cache
  41. ---> 6e748fc917ed
  42. Step 15/75 : ARG CSCRIPTPCH="OFF"
  43. ---> Using cache
  44. ---> 36248d6936df
  45. Step 16/75 : ARG CSCRIPTS="static"
  46. ---> Using cache
  47. ---> 01551622da77
  48. Step 17/75 : ARG CMODULES="static"
  49. ---> Using cache
  50. ---> 4b1542d2e4cf
  51. Step 18/75 : ARG CSCRIPTS_DEFAULT_LINKAGE="static"
  52. ---> Using cache
  53. ---> f05e2a8f2d56
  54. Step 19/75 : ARG CWITH_WARNINGS="ON"
  55. ---> Using cache
  56. ---> a1db162dd86d
  57. Step 20/75 : ARG CMAKE_EXTRA_OPTIONS=""
  58. ---> Using cache
  59. ---> 3ee060247e19
  60. Step 21/75 : ARG GIT_DISCOVERY_ACROSS_FILESYSTEM=1
  61. ---> Using cache
  62. ---> 08e28a4adb72
  63. Step 22/75 : ARG CCACHE_DIR="/ccache"
  64. ---> Using cache
  65. ---> db9b859e9c7e
  66. Step 23/75 : ARG CCACHE_MAXSIZE="1000MB"
  67. ---> Using cache
  68. ---> 9de56b2b9b15
  69. Step 24/75 : ARG CCACHE_SLOPPINESS="pch_defines,time_macros,include_file_mtime"
  70. ---> Using cache
  71. ---> 43ff528580b5
  72. Step 25/75 : ARG CCACHE_COMPRESS=""
  73. ---> Using cache
  74. ---> 4a0f812a7d21
  75. Step 26/75 : ARG CCACHE_COMPRESSLEVEL="9"
  76. ---> Using cache
  77. ---> fa2b8e68c55a
  78. Step 27/75 : ARG CCACHE_COMPILERCHECK="content"
  79. ---> Using cache
  80. ---> c2eb822bcf1a
  81. Step 28/75 : ARG CCACHE_LOGFILE=""
  82. ---> Using cache
  83. ---> c24046637589
  84. 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/*
  85. ---> Using cache
  86. ---> d4afcebaf98c
  87. Step 30/75 : COPY CMakeLists.txt /azerothcore/CMakeLists.txt
  88. ---> Using cache
  89. ---> dbdb8026231d
  90. Step 31/75 : COPY conf /azerothcore/conf
  91. ---> Using cache
  92. ---> 019c251b10b0
  93. Step 32/75 : COPY deps /azerothcore/deps
  94. ---> Using cache
  95. ---> 30f76dbc75f4
  96. Step 33/75 : COPY src /azerothcore/src
  97. ---> Using cache
  98. ---> 3f63ff280194
  99. Step 34/75 : COPY modules /azerothcore/modules
  100. ---> Using cache
  101. ---> a17e96fa772d
  102. Step 35/75 : ARG CACHEBUST=1
  103. ---> Using cache
  104. ---> 11e342375ce1
  105. Step 36/75 : WORKDIR /azerothcore/build
  106. ---> Using cache
  107. ---> 3559d5454b1c
  108. 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"
  109. ---> Using cache
  110. ---> fa8d6ee815f7
  111. Step 38/75 : FROM skeleton as runtime
  112. ---> ce13cb533b79
  113. Step 39/75 : ARG USER_ID=1000
  114. ---> Using cache
  115. ---> d6df72e12295
  116. Step 40/75 : ARG GROUP_ID=1000
  117. ---> Using cache
  118. ---> 1c6107ef1050
  119. Step 41/75 : ARG DOCKER_USER=acore
  120. ---> Using cache
  121. ---> c87b9597cdb7
  122. Step 42/75 : ENV ACORE_COMPONENT=undefined
  123. ---> Using cache
  124. ---> bb87a1667699
  125. 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/*
  126. ---> Using cache
  127. ---> 3844a6b2c61f
  128. Step 44/75 : COPY --from=build /azerothcore/env/dist/etc/ /azerothcore/env/ref/etc
  129. ---> Using cache
  130. ---> 6c0fa98dcb37
  131. Step 45/75 : VOLUME /azerothcore/env/dist/etc
  132. ---> Using cache
  133. ---> 9a13c95d1d72
  134. Step 46/75 : ENV PATH="/azerothcore/env/dist/bin:$PATH"
  135. ---> Using cache
  136. ---> 2c046b44b7f9
  137. 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
  138. ---> Using cache
  139. ---> d0f7f363d62b
  140. Step 48/75 : COPY apps/docker/entrypoint.sh /entrypoint.sh
  141. ---> Using cache
  142. ---> 2916ba1e5aca
  143. Step 49/75 : RUN chmod -v +x /entrypoint.sh
  144. ---> Using cache
  145. ---> 81cdaf85c4a1
  146. Step 50/75 : USER $DOCKER_USER
  147. ---> Using cache
  148. ---> 4ecb161a5643
  149. Step 51/75 : ENTRYPOINT ["/entrypoint.sh"]
  150. ---> Using cache
  151. ---> 5e3c65f60281
  152. Step 52/75 : FROM runtime as authserver
  153. ---> 5e3c65f60281
  154. Step 53/75 : LABEL description "AzerothCore Auth Server"
  155. ---> Using cache
  156. ---> 85fddf189b1a
  157. Step 54/75 : ENV ACORE_COMPONENT=authserver
  158. ---> Using cache
  159. ---> cf1e14ee6aa9
  160. Step 55/75 : ENV AC_UPDATES_ENABLE_DATABASES=0
  161. ---> Using cache
  162. ---> 175519d0246a
  163. Step 56/75 : ENV AC_DISABLE_INTERACTIVE=1
  164. ---> Using cache
  165. ---> e4b0a011c2d2
  166. Step 57/75 : ENV AC_CLOSE_IDLE_CONNECTIONS=0
  167. ---> Using cache
  168. ---> 1f52446672e8
  169. Step 58/75 : COPY --chown=$DOCKER_USER:$DOCKER_USER --from=build /azerothcore/env/dist/bin/authserver /azerothcore/env/dist/bin/authserver
  170. unable to convert uid/gid chown string to host mapping: can't find uid for user : no such user:
  171. ERROR: Service 'ac-db-import' failed to build
  172. ########@DWSNAS02:~/azerothcore-wotlk$
  173.  
Advertisement
Add Comment
Please, Sign In to add comment