mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 05:36:23 +00:00
AzerothCore complete Docker solution
Check https://github.com/azerothcore/azerothcore-wotlk/tree/master/docker for all details.
This commit is contained in:
18
docker/database/Dockerfile
Normal file
18
docker/database/Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user