feat(docker): Extended information on setting up Pantalaimon with Docker
All checks were successful
Docker CI/CD / Docker Build and Push to Docker Hub (push) Successful in 7m58s

This commit is contained in:
Kumi 2024-05-15 14:33:35 +02:00
parent e46be65707
commit bd0099aa29
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 8 additions and 2 deletions

View file

@ -71,9 +71,10 @@ cp config.dist.ini config.ini
sqlite3 database.db "SELECT 1" sqlite3 database.db "SELECT 1"
# Optionally, create Pantalaimon config # Optionally, create Pantalaimon config
cp pantalaimon.example.conf pantalaimon.conf cp contrib/pantalaimon.example.conf pantalaimon.conf
# Edit the Pantalaimon config file to your needs # Edit the Pantalaimon config file to your needs
# Don't forget to update config.ini to point to your Pantalaimon instance # Update your homeserver URL in the bot's config.ini to point to Pantalaimon (probably http://pantalaimon:8010 if you used the provided example config)
# You can use `fetch_access_token.py` to get an access token for the bot
# Start the bot # Start the bot
docker-compose up -d docker-compose up -d

View file

@ -0,0 +1,5 @@
[Homeserver]
Homeserver = https://example.com
ListenAddress = localhost
ListenPort = 8010
IgnoreVerification = True