hacky af never use this!

This commit is contained in:
Philip Henning 2025-05-17 19:36:07 +02:00
commit b73565dc94
6 changed files with 275 additions and 0 deletions

26
docker-compose.yml Normal file
View file

@ -0,0 +1,26 @@
# docker-compose.yml for WoWSimpleRegistration.
#
# Start the server with `docker compose up -d --build`
#
# Don't make changes this file! make a `docker-compose.override.yml` and make your
# changes there instead.
services:
app:
image: wow-simple-registration:${DOCKER_IMAGE_TAG:-latest}
build:
context: .
dockerfile: Dockerfile
args:
WOWSIMPLEREGISTRATION_VERSION: master
networks:
- ac-network
volumes:
- ./config/config.php:/var/www/html/application/config/config.php
ports:
- 8080:8000
networks:
ac-network:
name: azerothcore-wotlk_ac-network
external: true