mirror of
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker.git
synced 2026-01-04 07:39:57 -06:00
16 lines
598 B
YAML
16 lines
598 B
YAML
services:
|
|
bricktracker:
|
|
container_name: BrickTracker
|
|
restart: unless-stopped
|
|
image: gitea.baerentsen.space/frederikbaerentsen/bricktracker:latest
|
|
ports:
|
|
- "3333:3333"
|
|
volumes:
|
|
- ./data:/app/data/
|
|
# Configuration can be done via .env file
|
|
# For new installations, place .env in data/ folder for persistence
|
|
# For backward compatibility, .env in root is also supported
|
|
# The app automatically detects and uses data/.env (priority) or .env (fallback)
|
|
# env_file: ".env" # Optional: Only needed if keeping .env in root for backward compatibility
|
|
|