mirror of
https://github.com/notepadguyOfficial/WSL-Debian-Docker-Azerothcore-Playerbots-Installation.git
synced 2026-01-13 01:08:36 +00:00
Add initial setup for Azerothcore with Docker and environment configuration
This commit is contained in:
25
src/.env
Normal file
25
src/.env
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
#
|
||||
# Create a .env file in the root folder and use the following
|
||||
# variables to configure your docker compose
|
||||
#
|
||||
|
||||
DOCKER_AC_ENV_FILE=
|
||||
|
||||
DOCKER_VOL_ROOT=
|
||||
DOCKER_VOL_CONF=
|
||||
DOCKER_VOL_ETC=../wotlk/etc
|
||||
DOCKER_VOL_LOGS=../wotlk/logs
|
||||
DOCKER_VOL_DATA=
|
||||
|
||||
DOCKER_WORLD_EXTERNAL_PORT=
|
||||
DOCKER_SOAP_EXTERNAL_PORT=
|
||||
DOCKER_AUTH_EXTERNAL_PORT=
|
||||
DOCKER_DB_EXTERNAL_PORT=
|
||||
DOCKER_DB_ROOT_PASSWORD=root
|
||||
|
||||
DOCKER_USER=acore
|
||||
DOCKER_USER_ID=1000
|
||||
DOCKER_GROUP_ID=1000
|
||||
|
||||
TZ=Europe/Oslo
|
||||
10
src/docker-compose.override.yml
Normal file
10
src/docker-compose.override.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
services:
|
||||
ac-database:
|
||||
environment:
|
||||
TZ: ${TZ}
|
||||
|
||||
ac-worldserver:
|
||||
environment:
|
||||
TZ: ${TZ}
|
||||
volumes:
|
||||
- ./modules:/azerothcore/modules:rw
|
||||
3
src/sql/acore_auth/update_realmlist.sql
Normal file
3
src/sql/acore_auth/update_realmlist.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
USE acore_auth;
|
||||
SELECT * FROM realmlist;
|
||||
UPDATE realmlist SET address='{{IP_ADDRESS}}';
|
||||
Reference in New Issue
Block a user