Add files via upload
This commit is contained in:
commit
00b611d753
10 changed files with 371 additions and 0 deletions
16
compose.yaml
Normal file
16
compose.yaml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
version: "3.5"
|
||||
services:
|
||||
homepage:
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
container_name: homepage
|
||||
restart: always
|
||||
ports:
|
||||
- 3000:3000
|
||||
env_file: .env # use .env
|
||||
volumes:
|
||||
- ./config:/app/config # Make sure your local config directory exists
|
||||
#- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
|
||||
environment:
|
||||
PUID: $PUID # read them from .env
|
||||
PGID: $PGID # read them from .env
|
||||
networks: {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue