Files
TinfoilVibeServer/compose.yaml
T
ecenshu 33a724a796
ci / build_linux (push) Failing after 1m49s
Consolidate config files for both local dev and docker
Consolidate data into separate mapped volume for docker and local
2025-11-13 18:54:57 +10:30

22 lines
528 B
YAML
Raw 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
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"