Removes need for manual docker network connect after each rebuild. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
326 B
YAML
19 lines
326 B
YAML
services:
|
|
analytics:
|
|
build: .
|
|
container_name: librechat-analytics
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3001:3001"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- PORT=3001
|
|
networks:
|
|
- default
|
|
- librechat
|
|
|
|
networks:
|
|
librechat:
|
|
external: true
|
|
name: librechat_default
|