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

Revision #2
Created 11 October 2021 15:10:58 by DB T3CH
Updated 11 October 2021 15:15:48 by DB T3CH