9 # Prevent these directories from mounting so they're not shared between host OS and Docker
12 # Mount a storage directory that will persist between runs
13 - web-storage:/app/storage
16 command: bundle exec rails s -p 3000 -b '0.0.0.0'
23 dockerfile: docker/postgres/Dockerfile
27 POSTGRES_HOST_AUTH_METHOD: trust
28 POSTGRES_DB: openstreetmap
30 # Mount the Postgres data directory so it persists between runs
31 - db-data:/var/lib/postgresql/data