33a724a796
ci / build_linux (push) Failing after 1m49s
Consolidate data into separate mapped volume for docker and local
22 lines
528 B
YAML
22 lines
528 B
YAML
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 # .NET‑specific
|
||
- LOG_LEVEL=${LOG_LEVEL} # just a double‑check, uses .env value
|
||
volumes:
|
||
- ./data:/app/data
|
||
- ./config:/app/config
|
||
ports:
|
||
- ":80"
|
||
|