mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 03:13:06 +00:00
Added documentation in the README.md file for the Docker build process.
This commit is contained in:
parent
0d95145bfb
commit
37060cf1b1
1 changed files with 14 additions and 0 deletions
14
README.md
14
README.md
|
@ -110,6 +110,20 @@ Heres a list of the data building functions
|
|||
- build_pal_parks()
|
||||
|
||||
|
||||
## Docker
|
||||
|
||||
The application can be built and run as a Docker container for easy deployments
|
||||
|
||||
From the root directory of the cloned repo
|
||||
```
|
||||
docker build -t pokeapi .
|
||||
```
|
||||
|
||||
Run the container on host port 8000
|
||||
```
|
||||
docker run -d -p 8000:8000 pokeapi
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
All contributions are welcome: bug fixes, data contributions, recommendations.
|
||||
|
|
Loading…
Reference in a new issue