2024-11-02 04:43:28 +00:00
|
|
|
services:
|
|
|
|
anope:
|
2024-11-08 00:04:48 +00:00
|
|
|
restart: always
|
2024-11-02 04:43:28 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
args:
|
|
|
|
BUILD_SERVER_NAME: ${SERVER_NAME}
|
|
|
|
image: anope
|
|
|
|
network_mode: "host"
|
|
|
|
env_file: "config.env"
|
|
|
|
volumes:
|
2024-11-08 00:04:48 +00:00
|
|
|
- ./custom:/etc/anope/custom:rw
|
2024-11-02 04:43:28 +00:00
|
|
|
- ./include.conf:/etc/anope/include.conf:ro
|
|
|
|
- log:/var/log/anope
|
|
|
|
volumes:
|
|
|
|
log:
|
|
|
|
name: anope_log
|