From 1ed91f56ed426dbacbe10fb57e520bf65bc15a69 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Fri, 5 Dec 2025 13:34:23 -0500 Subject: [PATCH] Added an opengist compose file --- opengist/compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 opengist/compose.yml diff --git a/opengist/compose.yml b/opengist/compose.yml new file mode 100644 index 0000000..0e3dbbc --- /dev/null +++ b/opengist/compose.yml @@ -0,0 +1,18 @@ +--- +volumes: + opengist.vol: +services: + opengist: + image: ghcr.io/thomiceli/opengist:1.11.1 + container_name: opengist + restart: unless-stopped + ports: + - 6157:6157 + - 2222:2223 + volumes: + - opengist.vol:/opengist + - ~/.config/opengist/config.yml:/config.yml" + environment: + OG_SSH_PORT: 22 + UID: $(id -u $USER) + GID: $(id -u $USER) \ No newline at end of file