You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
755 B
22 lines
755 B
version: "3.2" |
|
services: |
|
inspircd: |
|
image: "inspircd/inspircd-docker" |
|
env_file: "docker/inspircd.env" |
|
expose: |
|
- "7000" |
|
ports: |
|
- "${SMS_PORT}:6667" |
|
sms-irc: |
|
image: "eeeeeta/sms-irc" |
|
entrypoint: "/sms-irc/docker/compose.sh" |
|
environment: |
|
SMS_ADMIN_NICK: |
|
SMS_DL_PATH: |
|
SMS_DATABASE_URL: |
|
volumes: |
|
- type: "mount" |
|
source: "${SMS_ATTACH_PATH}" |
|
target: "/data" |
|
depends_on: |
|
- inspircd
|
|
|