AppsGamesLancache

Lancache

LAN Party game caching made easy.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '2'
x-restart-policy: &restart-policy "no"
services:
  dns:
    image: lancachenet/lancache-dns:latest
    env_file: .env
    restart: *restart-policy
    ports:
      - ${DNS_BIND_IP}:53:53/udp
      - ${DNS_BIND_IP}:53:53/tcp
 
## HTTPS requests are now handled in monolithic directly
## you could choose to return to sniproxy if desired
#
#  sniproxy:
#    image: lancachenet/sniproxy:latest
#    env_file: .env
#    restart: *restart-policy
#    ports:
#      - 443:443/tcp
 
  monolithic:
    image: lancachenet/monolithic:latest
    env_file: .env
    restart: *restart-policy
    ports:
      - 80:80/tcp
      - 443:443/tcp
    volumes:
      - ${CACHE_ROOT}/cache:/data/cache
      - ${CACHE_ROOT}/logs:/data/logs

Resources

Website: https://lancache.net/

GitHub: https://github.com/lancachenet/monolithic

Docker Hub: https://hub.docker.com/r/lancachenet/monolithic

Configuration: https://github.com/lancachenet/docker-compose