23 lines
630 B
YAML
23 lines
630 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
teto_ai:
|
|
build: .
|
|
container_name: teto_ai
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
environment:
|
|
# supply the user token at runtime:
|
|
USER_TOKEN: "${USER_TOKEN}"
|
|
BOT_CLIENT_ID: "${BOT_CLIENT_ID}"
|
|
BOT_CLIENT_SECRET: "${BOT_CLIENT_SECRET}"
|
|
BOT_REDIRECT_URI: "https://teto.getsilly.org/auth/callback"
|
|
volumes:
|
|
# live-peek folder so you can grab screenshots outside the container
|
|
- ./output:/tmp/output
|
|
ports:
|
|
- "5901:5901" # VNC
|
|
- "3000:3000" # optional HTTP server if you add one
|
|
tmpfs:
|
|
- /tmp:size=512M
|
|
restart: unless-stopped
|