Last active
April 13, 2022 12:45
-
-
Save viertelwissen/330729b5a7be2012761dacc6c575e461 to your computer and use it in GitHub Desktop.
Phantombot docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| phantombot: | |
| container_name: phantombot | |
| image: gmt2001/phantombot-stable | |
| restart: always | |
| ports: | |
| - 25000:25000 | |
| volumes: | |
| - phantombot-data:/opt/PhantomBot_data | |
| - /etc/localtime:/etc/localtime:ro | |
| environment: | |
| # Twitch bot user (Required) | |
| PHANTOMBOT_USER: "botname" | |
| # Twitch bot user OAuth token (https://phantombot.github.io/PhantomBot/oauth/) (Required) | |
| PHANTOMBOT_OAUTH: "secretTokenForTheBotAcc" | |
| # Twitch caster channel (Required) | |
| PHANTOMBOT_CHANNEL: "castername" | |
| # Webinterface username | |
| PHANTOMBOT_PANELUSER: "webuser" | |
| # Webinterface password | |
| PHANTOMBOT_PANELPASSWORD: "secretPassword" | |
| # Webinterface use https? | |
| PHANTOMBOT_USEHTTPS: "true" | |
| PHANTOMBOT_LOGTIMEZONE: "Europe/Berlin" | |
| labels: | |
| # Watchtower | |
| com.centurylinklabs.watchtower.enable: true | |
| volumes: | |
| phantombot-data: | |
| name: phantombot-data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment