Skip to content

Commit

Permalink
escape dollarsigns for docker in .env
Browse files Browse the repository at this point in the history
$LATITUDE and $LONGITUDE require additional leading dollar signs so that docker-compose doesn't interpret them as env vars and substitute in values (that don't exist)
  • Loading branch information
StarkZarn authored Feb 15, 2024
1 parent 5de95de commit 3990c6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TEMPLATE.env
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ AGGRESSIVE_HASH_SALTING=True
# - https://www.openstreetmap.org/?mlat=$LATITUDE&mlon=$LONGITUDE (default)
# - https://www.google.com/maps/search/?api=1&query=$LATITUDE,$LONGITUDE
# - https://www.mapquest.com/near-$LATITUDE,$LONGITUDE
LOCATION_URL=https://www.openstreetmap.org/?mlat=$LATITUDE&mlon=$LONGITUDE
LOCATION_URL=https://www.openstreetmap.org/?mlat=$$LATITUDE&mlon=$$LONGITUDE

# How many services should be displayed on dashboard page?
# Set to big number if you don't want pagination at all.
Expand Down

0 comments on commit 3990c6d

Please sign in to comment.