Files
docs/Container Documentation/Docker/Docker Compose/Homepage-Docker.md
Nicole Rappe b9aeaabbfb Initial Commit
Bringing Documentation into Gitea
2023-12-21 01:15:09 -07:00

958 B

Purpose: A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.

version: '3.8'
services:
  homepage:
    image: ghcr.io/benphelps/homepage:latest
    container_name: homepage
    volumes:
      - /srv/containers/homepage-docker:/config
      - /srv/containers/homepage-docker/icons:/app/public/icons
      - /var/run/docker.sock:/var/run/docker.sock
    ports:
      - 80:80
      - 443:443
      - 3000:3000
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Denver
    dns:
      - 192.168.3.10
      - 192.168.3.11
    restart: unless-stopped
    extra_hosts:
      - "rancher.cyberstrawberry.net:192.168.3.21"
    networks:
        docker_network:
          ipv4_address: 192.168.5.44    
    
networks:
  default:
    external:
      name: docker_network
  docker_network:
    external: true
Not Applicable