https://github.com/petemcw/docker-pokemongo-map
Live visualization of all the Pokémon in your area
https://github.com/petemcw/docker-pokemongo-map
docker docker-image pokemon-go unraid
Last synced: 3 months ago
JSON representation
Live visualization of all the Pokémon in your area
- Host: GitHub
- URL: https://github.com/petemcw/docker-pokemongo-map
- Owner: petemcw
- Created: 2016-08-01T15:04:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-06T14:37:29.000Z (almost 9 years ago)
- Last Synced: 2024-12-30T06:13:08.016Z (5 months ago)
- Topics: docker, docker-image, pokemon-go, unraid
- Language: Shell
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# petemcw/docker-pokemongo-map
Container for the open-source Pokémon Go Map found at https://github.com/AHAAAAAAA/PokemonGo-Map. Documentation for the map can be found at [PoGoMap](https://jz6.github.io/PoGoMap/).

## Usage
Using Docker Compose it's as simple as setting your environment variables and running:
```
docker compose up -d
```Otherwise:
```
docker create --name=pokemongo-map \
-e PGID= \
-e PUID= \
-e BRANCH=develop \
-e GMAPS_KEY= \
-e LOCATION= \
-e USERNAME= \
-e PASSWORD= \
petemcw/pokemongo-map
```**Parameters**
* `-e SKIP_UPDATE` - prevents base OS package updates
* `-e AUTH_SERVICE` - Pokémon Go authentication service. Default is `ptc`
* `-e USERNAME`
* `-e PASSWORD`
* `-e LOCATION` - default starting point which can be address or coordinates
* `-e SCAN_DELAY` - time delay between requests in scan threads
* `-e STEP_LIMIT` - number of steps to scan from starting location
* `-e GMAPS_KEY` - Google Maps JavaScript API key
* `-e HOST` - web server listening IP address
* `-e PORT` - web server listening port
* `-e MYSQL_HOST` - MySQL host name (default is `sqlite`)
* `-e MYSQL_NAME` - MySQL database name
* `-e MYSQL_USER` - MySQL username
* `-e MYSQL_PASS` - MySQL passwordIt is based on phusion-baseimage with ssh removed, for shell access whilst the container is running do `docker exec -it pokemongo-map /sbin/my_init -- /bin/bash`.
## Updates
* Upgrade to the latest version simply `docker restart pokemongo-map`.