Updated Docker (markdown)

master
Hunter Long 2018-08-19 18:20:52 -07:00
parent ea67e2f61f
commit f2a4991f78
1 changed files with 9 additions and 2 deletions

@ -1,8 +1,15 @@
# Install on Docker # Latest Docker Image
This Docker image uses Alpine Linux to keep it ultra small. The `latest` Docker image uses Alpine Linux to keep it ultra small.
```bash ```bash
docker run -it -p 8080:8080 hunterlong/statup docker run -it -p 8080:8080 hunterlong/statup
``` ```
# Development Docker Image
If you want to run Statup that was build from the source, use the `dev` Docker image.
```bash
docker run -it -p 8080:8080 hunterlong/statup:dev
```
#### Or use Docker Compose #### Or use Docker Compose
This Docker Compose file inlcudes NGINX, Postgres, and Statup. This Docker Compose file inlcudes NGINX, Postgres, and Statup.