2026-05-19 22:14:32 +02:00
|
|
|
# ATC Lakehouse dashboard stack (atc-docker01)
|
|
|
|
|
# Usage: docker compose -f deploy/docker-compose.homepage.yml up -d --build
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
homepage:
|
|
|
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
|
|
|
container_name: homepage
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "80:3000"
|
|
|
|
|
volumes:
|
|
|
|
|
- ../config/homepage:/app/config
|
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
|
environment:
|
2026-05-19 22:28:01 +02:00
|
|
|
HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS:-atc-docker01.dell-atc.lan,localhost}
|
2026-05-19 22:14:32 +02:00
|
|
|
|
|
|
|
|
rss-proxy:
|
|
|
|
|
build: ../rss-proxy
|
|
|
|
|
image: rss-proxy:latest
|
|
|
|
|
container_name: rss-proxy
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "8090:8090"
|
|
|
|
|
|
|
|
|
|
icons-server:
|
|
|
|
|
image: nginx:alpine
|
|
|
|
|
container_name: icons-server
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "8080:80"
|
|
|
|
|
volumes:
|
|
|
|
|
- ../config/homepage/icons:/usr/share/nginx/html:ro
|