diff options
author | Raphael <mail@raphaelkabo.com> | 2024-07-27 18:44:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 18:44:55 +0100 |
commit | 55e0d6ff22b6d3b037de6b9b0cb0c8ce6c2a19a9 (patch) | |
tree | f8f5bf4bffe95d7acd56efb01dea6388f7365c8c | |
parent | af92fcd24774411f572600a3643f88cbbf4fcb17 (diff) | |
parent | 8d27e493a63f583e7cc936ac8fd9a3b11a864c80 (diff) |
Merge pull request #162 from HybridSarcasm/patch-1
Docker volume for 'events' folder
-rw-r--r-- | docker-compose.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 9677edd..a7a3f59 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,8 +11,10 @@ services: ports: - 3000:3000 volumes: - # Set the correct path to the config folder - - ./gathio-docker:/app/config + # 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/events:/app/public/events mongo: image: mongo:latest volumes: |