Last active
October 5, 2023 15:47
-
-
Save dnburgess/5e0ba43cdc0015218da15401b7e85631 to your computer and use it in GitHub Desktop.
DB Tech LANCache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
The lancache IP is the IP of your server
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, i have a question do you have to change the LANCACHE_ip to your portainer ip or a ip that you want the server to be?