initial
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
|||||||
|
# Environment files (contains secrets!)
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.dockerignore
|
||||||
|
*.log
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
# IDE/editor files
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Backup files
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Optionally: omit .env.example if already safe (see below)
|
||||||
|
# .env.example
|
||||||
|
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
services:
|
||||||
|
homepage:
|
||||||
|
image: ghcr.io/gethomepage/homepage:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
container_name: homepage
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
volumes:
|
||||||
|
- /srv/docker/homepage/config:/app/config # Make sure your local config directory exists
|
||||||
|
- /srv/docker/homepage/icons:/app/public/icons
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
|
||||||
|
environment:
|
||||||
|
HOMEPAGE_ALLOWED_HOSTS: nostromo.lan:3000,homepage.lan # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
||||||
|
|
||||||
Reference in New Issue
Block a user