docker-compose.yml raw

   1  version: '3.8'
   2  
   3  services:
   4    orly-relay:
   5      build:
   6        context: .
   7        dockerfile: Dockerfile
   8      container_name: orly-policy-test
   9      ports:
  10        - "8777:8777"
  11      volumes:
  12        # Mount a volume to persist data and access output files
  13        - orly-data:/home/orly/.local/share/ORLY
  14        - orly-output:/home/orly
  15      networks:
  16        - orly-test-net
  17      restart: unless-stopped
  18  
  19  volumes:
  20    orly-data:
  21    orly-output:
  22  
  23  networks:
  24    orly-test-net:
  25      driver: bridge
  26