AzerothCore complete Docker solution

Check https://github.com/azerothcore/azerothcore-wotlk/tree/master/docker for all details.
This commit is contained in:
Francesco Borzì
2019-01-12 21:48:33 +01:00
committed by GitHub
parent e7dafc18d2
commit 7bff043a1b
13 changed files with 186 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
FROM alpine:latest as builder
RUN apk add --no-cache bash
ADD apps /azerothcore/apps
ADD conf /azerothcore/conf
ADD data /azerothcore/data
ADD deps /azerothcore/deps
ADD acore.json /azerothcore/acore.json
RUN /azerothcore/apps/db_assembler/db_assembler.sh 1
FROM mysql:5.7
COPY --from=builder /azerothcore/env/dist/sql /sql
ADD docker/database/generate-databases.sh /docker-entrypoint-initdb.d