azerothcore-armory/docker-compose.yml
Yehonal f37189e431
fix(docker-compose): add extra_hosts for host access and define ac-nework (#43)
* fix(docker-compose): add extra_hosts for host access and define ac-network

* fix(docker-compose): remove extra_hosts configuration for host access
2025-07-11 11:07:12 +02:00

22 lines
583 B
YAML

services:
armory:
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
volumes:
- ./data:/data/
- ./logs:/logs/
env_file:
- .env
networks:
- local-private-net
ports:
- 48733:48733
networks:
local-private-net:
driver: bridge
ac-network:
name: ${DOCKER_AC_NETWORK_NAME:-azerothcore-wotlk_ac-network} # default network name if you use the docker setup of ac
external: ${DOCKER_AC_NETWORK_EXTERNAL:-false}