Minor update

This commit is contained in:
TwinProduction 2019-10-27 21:17:55 -04:00
parent a90b0ae565
commit fc88d4fd3d

View File

@ -24,6 +24,21 @@ services:
```
## Docker
Building the Docker image is done as following:
```
docker build . -t gatus
```
You can then run the container with the following command:
```
docker run -p 8080:8080 --name gatus gatus
```
## Running the tests
```
@ -31,13 +46,6 @@ go test ./... -mod vendor
```
## Building with Docker
```
docker build . -t gatus
```
## Using in Production
See the [example](example) folder.