How to build docker-compose.yaml for running Data Abstract and Relativity Server with MSSQL on Windows

After reading the blog about using Docker Compose to run the full server-side environment on Docker Desktop for Windows, I modified the ‘docker-compose.yaml’ file and tried it, but I got several “Access denied” errors.
This is the content of the file:

version: '3'

services:
  relativity:
    container_name: docker-relativity
    image: phrynohyas/relativity
    ports:
      - "7100:7100"
    depends_on: 
      - docker-database
    volumes:
      - domain:/etc/relativity/
    networks:
      - docker-network-relativity

  docker-database:
    container_name: docker-database
    image: mcr.microsoft.com/mssql/server:2022-latest
    restart: always
    environment:
      - ACCEPT_EULA=Y
      - MSSQL_SA_PASSWORD=Scooter@WI
      - MSSQL_PID=Express
    volumes:
      - database:/var/opt/mssql/data
    networks:
      - docker-network-relativity

  nginx:
    container_name: docker-nginx
    image: nginx:stable-alpine
    ports: 
      - "80:80"
    volumes:
      - ./nginx/nginx.conf.prod:/etc/nginx/conf.d/default.conf
    depends_on: 
      - relativity
    networks:
      - docker-network-relativity

volumes:
  database:
  domain:

networks:
  docker-network-relativity:
    driver: bridge

Please note that phrynohyas/relativity is not an officially supported docker image — that was published by a former employee, and is not being maintained. We’re looking into providing an official docker image from remobjects in the future, but I’m afraid I can not give a concrete ETA for that.

But if you can you post the full error output, maybe I can help.