We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c224eb commit 3af1629Copy full SHA for 3af1629
1 file changed
docker-entrypoint.sh
@@ -36,6 +36,12 @@ for f in /docker-entrypoint-initdb.d/*; do
36
echo
37
done
38
39
+# deleting areas file if present. Otherwise the link to /db/db/osm3s_vX.X.X_areas will not be created and the area is not availible.
40
+if [ -f /dev/shm/osm3s_areas ]; then
41
+ echo "Found orphaned /dev/shm/osm3s_areas file. Deleting it."
42
+ rm /dev/shm/osm3s_areas
43
+fi
44
+
45
if [[ ! -f /db/init_done ]]; then
46
echo "No database directory. Initializing"
47
touch /db/changes.log
0 commit comments