Skip to content
Robert S.W. Carroll edited this page Feb 18, 2023 · 3 revisions

TVWB, now with Docker!

To run tvwb with docker, you must first install docker and docker-compose.

Docker Installation Guide

Docker Compose (might already be installed w/Docker)

Commands

There's two things to keep in mind. Starting the app and entering the app for configuration.

Starting/Running the app

To simply start the app, do the following command:

docker-compose run app start

Dissecting this command, we have docker-compose which is the base command. The run argument is saying to run a particular "service." In our case, it is the app service, defined in docker-compose.yml. The start is the start argument from the tvwb.py file.

To start the app detached (in the background) you can run:

docker-compose run -d app start

Entering/configuring the app

To configure or enter the app (as if you were doing it the "original" way) you can run the following command:

docker-compose run app shell

This command puts you into the tvwb.py shell. This allows you to create actions and events.

For support getting the bot up and running, please use Discussions and hopefully someone can help :)

There's also a new discord! https://discord.gg/wrjuSaZCFh

I'm also available for quick questions on Twitter and available for consulting for more serious inquiries.

Clone this wiki locally