From 54a05f85d117a9097d46a78e989071f24f593c6e Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Fri, 21 Nov 2025 19:01:26 -0500 Subject: [PATCH] Add docker-compose configuration for Grifter service --- grifter/docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 grifter/docker-compose.yml diff --git a/grifter/docker-compose.yml b/grifter/docker-compose.yml new file mode 100644 index 0000000..fc93fa1 --- /dev/null +++ b/grifter/docker-compose.yml @@ -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 \ No newline at end of file