├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-start ├── nginx.conf └── overpass /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | *.bz2 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/README.md -------------------------------------------------------------------------------- /docker-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/docker-start -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/nginx.conf -------------------------------------------------------------------------------- /overpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediasuitenz/docker-overpass-api/HEAD/overpass --------------------------------------------------------------------------------