summaryrefslogtreecommitdiff
path: root/gathio-docker
diff options
context:
space:
mode:
Diffstat (limited to 'gathio-docker')
-rw-r--r--gathio-docker/docker-compose.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/gathio-docker/docker-compose.yml b/gathio-docker/docker-compose.yml
new file mode 100644
index 0000000..5a8a0d9
--- /dev/null
+++ b/gathio-docker/docker-compose.yml
@@ -0,0 +1,21 @@
+volumes:
+ mongodb_data_db:
+
+services:
+ gathio:
+ container_name: gathio-app
+ image: ghcr.io/lowercasename/gathio:latest
+ links:
+ - mongo
+ ports:
+ - 3000:3000
+ volumes:
+ # The path to Gathio's config folder - change to match your system
+ - ./gathio-docker/config:/app/config
+ # The path to Gathio's user-uploaded event images folder - change to match your system
+ - ./gathio-docker/images:/app/public/events
+ mongo:
+ container_name: gathio-db
+ image: mongo:latest
+ volumes:
+ - mongodb_data_db:/data/db