Kumi
f8861a16ad
Changed the volume mapping for GPTbot service in `docker-compose.yml` from `settings.ini` to `config.ini`. This modification aligns the container configuration with the new application configuration file naming convention, facilitating easier configuration management and clarity for development and deployment processes. This change is essential for maintaining consistency across our documentation and deployment scripts, ensuring that all references to configuration files are accurate and up to date.
14 lines
No EOL
255 B
YAML
14 lines
No EOL
255 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
gptbot:
|
|
build: .
|
|
volumes:
|
|
- ./config.ini:/app/config.ini
|
|
|
|
pantalaimon:
|
|
image: matrixdotorg/pantalaimon
|
|
volumes:
|
|
- ./pantalaimon.conf:/etc/pantalaimon/pantalaimon.conf
|
|
ports:
|
|
- "8010:8010" |