16 lines
295 B
YAML
16 lines
295 B
YAML
services:
|
|
atheme:
|
|
build:
|
|
context: .
|
|
args:
|
|
BUILD_SERVER_NAME: ${SERVER_NAME}
|
|
image: atheme
|
|
network_mode: "host"
|
|
env_file: "config.env"
|
|
volumes:
|
|
- ./data:/etc/atheme
|
|
- log:/var/log/atheme
|
|
volumes:
|
|
log:
|
|
name: atheme_log
|