From 26187c32f73e01549c0f6887719d8cd07a5acaf7 Mon Sep 17 00:00:00 2001 From: MrLetsplay2003 Date: Wed, 14 Jun 2023 11:50:47 +0200 Subject: [PATCH] Add GlusterFS compose file --- glusterfs/docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 glusterfs/docker-compose.yml diff --git a/glusterfs/docker-compose.yml b/glusterfs/docker-compose.yml new file mode 100644 index 0000000..c0fb5e2 --- /dev/null +++ b/glusterfs/docker-compose.yml @@ -0,0 +1,11 @@ +services: + glusterfs: + image: cringestudios/glusterfs + volumes: + - /data:/data + - gluster_data:/var/lib/glusterd + network_mode: host + privileged: true + restart: always +volumes: + gluster_data: \ No newline at end of file