DockerCompose-File - Dockge
This is the dockercompose-file for Dockge-Container
version: "3.8"services: dockge: image: louislam/dockge:1 restart: unless-stopped ports: - 5001:5001 volumes: - /var/run/docker.sock:/var/run/docker.sock - ./data:/app/data - /opt/stacks:/opt/stacks environment: # Tell Dockge where to find the stacks - DOCKGE_STACKS_DIR=/opt/stacks labels: - homepage.group=Docker - homepage.name=Dockge - homepage.icon=dockge.png - homepage.href=${DOCKGE_EXTERNAL_IP} networks: vlan103_net: #changeme ipv4_address: 10.1.3.2 #changemenetworks: vlan103_net: #changeme driver: ipvlan driver_opts: mode: l2 subnet: 10.1.3.0/24 #changeme parent: eth0.103 #changeme ipam: config: - subnet: 10.1.3.0/24 #changeme gateway: 10.1.3.1 #changemex-dockge: urls: - ${DOCKGE_EXTERNAL_IP}