refactor(docker): Update compose files (#1409)
* refactor(docker): Rename compose files * refactor(docker): Remove obsolete version attribute
This commit is contained in:
26
.examples/docker-compose-mtls/compose.yaml
Normal file
26
.examples/docker-compose-mtls/compose.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
services:
|
||||
nginx:
|
||||
image: nginx:stable
|
||||
volumes:
|
||||
- ./certs/server:/etc/nginx/certs
|
||||
- ./nginx:/etc/nginx/conf.d
|
||||
ports:
|
||||
- "8443:443"
|
||||
networks:
|
||||
- mtls
|
||||
|
||||
gatus:
|
||||
image: twinproduction/gatus:latest
|
||||
restart: always
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./certs/client:/certs
|
||||
environment:
|
||||
- GATUS_CONFIG_PATH=/config
|
||||
networks:
|
||||
- mtls
|
||||
|
||||
networks:
|
||||
mtls:
|
||||
Reference in New Issue
Block a user