Files

33 lines
851 B
YAML
Raw Permalink Normal View History

# 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:
HOMEPAGE_ALLOWED_HOSTS: ${HOMEPAGE_ALLOWED_HOSTS:-atc-docker01.dell-atc.lan,localhost}
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