WoWSimpleRegistration-docker/docker-compose.yml
2025-05-17 19:36:07 +02:00

26 lines
No EOL
640 B
YAML

# 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