redgate/monitor-website

Verified Publisher

By Redgate

Updated 1 day ago

Image
2

1.4K

redgate/monitor-website repository overview

Redgate Monitor — Website

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.

Supported tags

  • latest — the most recent release.
  • <version> — a specific release, e.g. 14.26.0.30761.

Getting started

Further documentation on how to run in Docker can be found here.

  1. 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
    
  2. 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
    
  3. Edit the relevant parameters of the .env before running docker compose.

    docker compose up
    

To run the Website over HTTPS, refer to this documentation.

Documentation

Licensing

Use of this image is subject to the Redgate End User Licence Agreement: https://www.red-gate.com/eula

Tag summary

Content type

Image

Digest

sha256:8cb8d3355

Size

405.1 MB

Last updated

1 day ago

docker pull redgate/monitor-website