This is the official repository for Redgate Monitor Website images.
The Website is intended to run alongside a Base Service. Refer to Docker Hub for instructions on setting up the Redgate Monitor Base Service.
latest — the most recent release.<version> — a specific release, e.g. 14.26.0.30761.Further documentation on how to run in Docker can be found here.
Copy the example docker-compose.yml
services:
website:
image: redgate/monitor-website:${IMAGE_TAG:-latest}
container_name: rgm-website
ports:
- "${WEBSITE_PORT:-80}:80"
- "${WEBSITE_SSL_PORT:-443}:443"
volumes:
- website_data:/var/opt/redgate/redgatemonitor
- website_config:/etc/opt/redgate/redgatemonitor
- website_logs:/var/log/redgate/redgatemonitor
networks:
- rgm-network
restart: unless-stopped
volumes:
website_data:
website_config:
website_logs:
networks:
rgm-network:
name: rgm-network
driver: bridge
Copy the example .env to the same directory as the above docker-compose.yml
# Optional: pin to a specific image version (default: latest)
IMAGE_TAG=latest
# Optional: host ports for the Website (defaults shown)
WEBSITE_PORT=80
WEBSITE_SSL_PORT=443
Edit the relevant parameters of the .env before running docker compose.
docker compose up
To run the Website over HTTPS, refer to this documentation.
Use of this image is subject to the Redgate End User Licence Agreement: https://www.red-gate.com/eula
Content type
Image
Digest
sha256:8cb8d3355…
Size
405.1 MB
Last updated
1 day ago
docker pull redgate/monitor-website