mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
18 lines
483 B
YAML
18 lines
483 B
YAML
services:
|
|
sillytavern:
|
|
build: ..
|
|
container_name: sillytavern
|
|
hostname: sillytavern
|
|
image: ghcr.io/sillytavern/sillytavern:latest
|
|
environment:
|
|
- NODE_ENV=production
|
|
- FORCE_COLOR=1
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- "./config:/home/node/app/config"
|
|
- "./data:/home/node/app/data"
|
|
- "./plugins:/home/node/app/plugins"
|
|
- "./extensions:/home/node/app/public/scripts/extensions/third-party"
|
|
restart: unless-stopped
|