diff options
author | Parker M <contact@pkrm.dev> | 2023-09-19 20:19:55 -0500 |
---|---|---|
committer | Parker M <contact@pkrm.dev> | 2023-09-19 20:19:55 -0500 |
commit | 9027b7da3332604dd1c7d4934f764ce1ccfecb54 (patch) | |
tree | 4798770968bfa157e99d080d7254a43dcc9c1f01 /docker-compose.yaml | |
parent | ffea8cc42abb9882d18fbab87e097264ff014c02 (diff) |
Add Twilio Support
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r-- | docker-compose.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..8b75675 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +version: '3.3' +services: + messagearr: + ports: + - '4545:4545' + environment: + - TZ=America/Chicago # OPTIONAL: Default is UTC + - RADARR_HOST_URL=http://127.0.0.1:7878 # Change to your radarr host + - RADARR_API_KEY=apikeyhere # Found by navigating to Settings > General + - SMS_SERVICE= # Currently only supporting Telnyx and Twilio + volumes: + - /local/file/path:/data + image: packetparker/messagearr:latest
\ No newline at end of file |