Skip to content

Instantly share code, notes, and snippets.

@viertelwissen
Last active April 13, 2022 12:45
Show Gist options
  • Select an option

  • Save viertelwissen/330729b5a7be2012761dacc6c575e461 to your computer and use it in GitHub Desktop.

Select an option

Save viertelwissen/330729b5a7be2012761dacc6c575e461 to your computer and use it in GitHub Desktop.
Phantombot docker-compose

Phantombot docker-compose

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