Skip to content
Snippets Groups Projects
docker-compose.yml 353 B
Newer Older
  • Learn to ignore specific revisions
  • services:
      owler-urlfrontier-ingest:
        build: .
        container_name: owler-urlfrontier-ingest
    
    Michael Dinzinger's avatar
    Michael Dinzinger committed
        command: "java -Xmx16G -jar /urlfrontier/owler-urlfrontier-ingest.jar --config config.ini"
    
        volumes:
    
          - ./logs:/urlfrontier/logs
          - ./input:/urlfrontier/input
    
          - ./archive:/urlfrontier/archive
    
        restart: "no"
        network_mode: "host"