mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-04-26 02:48:54 -05:00
14 lines
395 B
YAML
14 lines
395 B
YAML
# Dev/Test only: Not required in production
|
|
# Docker Compose configuration for nginx test service
|
|
|
|
services:
|
|
nginx-test:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8443:443"
|
|
volumes:
|
|
- ../certs/host-int-cert.pem:/etc/nginx/certs/server.crt:ro
|
|
- ../certs/host-int-key.pem:/etc/nginx/certs/server.key:ro
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
restart: unless-stopped
|