2024-10-27 23:34:13 +00:00
|
|
|
services:
|
|
|
|
ircd_linked:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
args:
|
|
|
|
BUILD_SERVER_NAME: ${SERVER_NAME}
|
|
|
|
image: inspi4
|
|
|
|
network_mode: "host"
|
|
|
|
env_file: "config.env"
|
2024-10-31 10:21:32 +00:00
|
|
|
command: /usr/local/bin/inspircd -c /etc/inspircd/inspircd.conf -F
|
2024-10-27 23:34:13 +00:00
|
|
|
volumes:
|
2024-10-31 10:21:32 +00:00
|
|
|
- ./motd.txt:/etc/inspircd/motd.txt:ro
|
|
|
|
- ./oper.motd.txt:/etc/inspircd/oper.motd.txt:ro
|
2024-10-28 00:27:11 +00:00
|
|
|
- ./include.conf:/etc/inspircd/include.conf:ro
|
2024-10-27 23:34:13 +00:00
|
|
|
- ssl:/etc/ssl/inspircd
|
|
|
|
- data:/var/lib/inspircd
|
|
|
|
- log:/var/log/inspircd
|
|
|
|
volumes:
|
|
|
|
data:
|
2024-10-28 20:22:51 +00:00
|
|
|
name: inspi4_data
|
2024-10-27 23:34:13 +00:00
|
|
|
ssl:
|
2024-10-28 20:22:51 +00:00
|
|
|
name: inspi4_ssl
|
2024-10-27 23:34:13 +00:00
|
|
|
log:
|
2024-10-28 20:22:51 +00:00
|
|
|
name: inspi4_log
|