Spaces:
Running
Running
File size: 353 Bytes
fe52598 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
version: "3"
services:
sillytavern:
build: ..
container_name: sillytavern
hostname: sillytavern
image: ghcr.io/sillytavern/sillytavern:latest
ports:
- "8000:8000"
volumes:
- "./config:/home/node/app/config"
- "./data:/home/node/app/data"
- "./plugins:/home/node/app/plugins"
restart: unless-stopped
|