Skip to main content

Docker Compose

version: '3.3'
services:
    lancache-dns:
        restart: unless-stopped
        container_name: lancache-dns
        ports:
            - 53:53/udp
        environment:
            - USE_GENERIC_CACHE=true
            - LANCACHE_IP=192.168.1.183
        image: lancachenet/lancache-dns:latest
    monolithic:
        restart: unless-stopped
        container_name: lancache
        volumes:
            - /cache/data:/data/cache
            - /cache/logs:/data/logs
        ports:
            - 8810:80
            - 8443:443
        image: lancachenet/monolithic:latest