-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running pajbot in a docker container #806
Comments
I tried running the bot with the following docker-compose.yml file: version: '3'
services:
pajbot:
image: leppunen/pajbot2:latest
restart: unless-stopped
environment:
- VIRTUAL_HOST=bot.redacted.tld
- LETSENCRYPT_HOST=bot.redacted.tld
- VIRTUAL_PORT=80
networks:
- public_services
# (public_services = my nginx reverse proxy)
volumes:
- ./configs/pajbot2.json:/app/cmd/bot/config.json
- ./db:/var/run/postgresql:ro
- /etc/localtime:/etc/localtime:ro
networks:
public_services:
external: true You'll have to make a configs folder, and then a pajbot2.json, because docker will think that pajbot2.json is a folder. |
The only problem I had when running it is this: When I pasted the example config file, I got this error:
When I made an empty config file, I got this error:
PS (2022. 08. 29. 20:14 UTC+2): |
I formatted the example.ini file into a json file, and now when I try to start the bot, I get this error:
|
As this issue is related to pajbot2, I've moved this issue to the pajbot2 repo. |
Discussed in pajbot/pajbot#2091
Originally posted by Mateyoo August 20, 2022
Hi!
In March, I tried running pajbot in a docker container via docker-compose but I didn't have much success.
I think it would be a good idea to make a docker documentation for the bot, so those people who don't have a spare server for hosting the bot could do it by using docker.
The text was updated successfully, but these errors were encountered: