Closed
Description
I am currently trying to get tegola up and running using the Getting-Started tutorial. Can anyone help me and tell me what I am doing wrong?
docker run --name postgis_postgres -e POSTGRES_PASSWORD=password -e POSTGRES_USER=postgres -p 5432:5432 postgis/postgis
export PGPASSWORD=password
export PGUSER=postgres
export PGHOST=localhost
psql -c 'CREATE DATABASE bonn;'
psql -c "CREATE USER \"user\";"
psql bonn < bonn_osm.dump
psql -c "CREATE USER tegola;"
psql -d bonn -c "GRANT SELECT ON ALL TABLES IN SCHEMA public TO tegola;"
psql -c "ALTER USER tegola WITH PASSWORD 'password';"
// Copy config.toml to current directory and change password to 'password'
./tegola serve --config=config.toml