adding the latest code

pull/3004/head
Avnit Bambah 3 months ago
parent 1d1339004a
commit ce235ede5d

@ -1,11 +1,49 @@
version: "3.3"
name: homepage
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
image: abambah/homepage:latest
ports:
- 3000:3000
volumes:
- /home/avnit/homepage/config:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
- mode: ingress
target: 3000
published: "3000"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /home/avnit/homepage/config
target: /app/config
bind:
create_host_path: true
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
read_only: true
bind:
create_host_path: true
devices: []
cap_add: []
command: []
environment: []
networks:
- default
privileged: false
hostname: homepage
cpu_shares: 90
deploy:
resources:
limits:
memory: 15969M
networks:
default:
name: homepage_default
x-casaos:
hostname: ""
scheme: http
index: /
port_map: 3000
author: self
category: self
icon: ""
title:
custom: Homepage

@ -0,0 +1,11 @@
version: "3.3"
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 3000:3000
volumes:
- /home/avnit/homepage/config:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
restart: unless-stopped
Loading…
Cancel
Save