Files
TinfoilVibeServer/compose.yaml
ecenshu 91f394f81b
ci / build_linux (push) Successful in 6m53s
ci / build_linux (pull_request) Successful in 3m25s
If filename can extract to a NcaMetadata entry, don't use nspextractor to pull information
Scan directories sequentially to reduce memory footprint
2025-11-15 17:28:41 +10:30

23 lines
550 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
version: "3.9"
services:
tinfoilvibeserver:
build:
context: TinfoilVibeServer
dockerfile: Dockerfile
image: gitea.ecenshu.net/ecenshu/tinfoilvibeserver:latest
container_name: tinfoilvibeserver
restart: unless-stopped
user: "1000:1000"
env_file:
- .env
environment:
- ASPNETCORE_ENVIRONMENT=Production # .NETspecific
- LOG_LEVEL=${LOG_LEVEL} # just a doublecheck, uses .env value
volumes:
- ./data:/app/data
- ./config:/app/config
ports:
- ":80"