atheme/docker-compose.yml

20 lines
439 B
YAML
Raw Normal View History

2024-11-02 04:43:43 +00:00
services:
atheme:
build:
context: .
args:
BUILD_SERVER_NAME: ${SERVER_NAME}
image: atheme
network_mode: "host"
env_file: "config.env"
volumes:
- data:/etc/atheme
- ./include.conf:/usr/local/etc/include.conf:ro
- ./atheme.conf:/usr/local/etc/atheme.conf:ro
2024-11-02 04:43:43 +00:00
- log:/var/log/atheme
volumes:
data:
name: atheme_data
log:
name: atheme_log