- docker/ renamed to services/ (single source of truth for compose files) - Update picsur.yml workflow paths from docker/dockerino/ to services/dockerino/
20 lines
342 B
YAML
20 lines
342 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
homer:
|
|
image: b4bz/homer:latest
|
|
container_name: homer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8090:8080"
|
|
volumes:
|
|
- ./assets:/assets
|
|
- ./config.yml:/assets/config.yml:ro
|
|
environment:
|
|
TZ: America/Sao_Paulo
|
|
|
|
networks:
|
|
default:
|
|
name: homelab-network
|
|
external: true
|