]> git.openstreetmap.org Git - rails.git/commitdiff
Update storage volume configuration for docker
authorTom Hughes <tom@compton.nu>
Wed, 21 Dec 2022 18:52:47 +0000 (18:52 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 21 Dec 2022 18:53:31 +0000 (18:53 +0000)
docker-compose.yml

index 8f67212eb72b96a17bcd311cde735805f7b01510..425bbc76c0b61dc0e217d3cbfbe89288199128f0 100644 (file)
@@ -9,9 +9,8 @@ services:
       # Prevent these directories from mounting so they're not shared between host OS and Docker
       - /app/node_modules/
       - /app/tmp/
-      # Mount these upload directories so they persist between runs
-      - web-traces:/home/osm/traces
-      - web-images:/home/osm/images
+      # Mount a storage directory that will persist between runs
+      - web-storage:/app/storage
     ports:
       - "3000:3000"
     command: bundle exec rails s -p 3000 -b '0.0.0.0'
@@ -32,6 +31,5 @@ services:
       - db-data:/var/lib/postgresql/data
 
 volumes:
-  web-traces:
-  web-images:
+  web-storage:
   db-data: