X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c514fd62fe005d8d41a39e11508a3aee6ba9946d..38b74c1c48521c3de988b774117d6f9febcf1c3f:/docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml index 70730febf..ad55e660e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,6 +6,12 @@ services: context: . volumes: - .:/app + # Prevent these directories from mounting so they're not shared between host OS and Docker + - /app/node_modules/ + # Mount a tmp directory that will persist between runs + - web-tmp:/app/tmp + # 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' @@ -19,6 +25,13 @@ services: ports: - "54321:5432" environment: + POSTGRES_HOST_AUTH_METHOD: trust POSTGRES_DB: openstreetmap volumes: - - ./docker-db-data:/var/lib/postgresql/data + # Mount the Postgres data directory so it persists between runs + - db-data:/var/lib/postgresql/data + +volumes: + web-tmp: + web-storage: + db-data: