Add docker-compose configuration for Grifter service

This commit is contained in:
2025-11-21 19:01:26 -05:00
parent b2f0dce480
commit 54a05f85d1

View File

@@ -0,0 +1,12 @@
version: '3.3'
services:
grifter:
image: 'grifter:latest'
container_name: grifter
volumes:
- '/docker-containers/grifter/grifter.toml:/opt/grifter/grifter.toml'
- '/docker-containers/grifter/cache:/opt/grifter/cache' # optional, but if you dont mount the cache as volume, it will be lost after the container is destroyed
- '/games/WindowsGames:/opt/grifter/library:ro' # Mount games as "read-only"
ports:
- '3909:39090'
restart: unless-stopped