17 lines
372 B
YAML
17 lines
372 B
YAML
|
---
|
||
|
version: "2"
|
||
|
services:
|
||
|
homer:
|
||
|
image: b4bz/homer
|
||
|
#To build from source, comment previous line and uncomment below
|
||
|
#build: .
|
||
|
container_name: homer
|
||
|
volumes:
|
||
|
- /home/ahosking/homer_dashboard/assets:/www/assets
|
||
|
ports:
|
||
|
- 80:8080
|
||
|
user: 1000:1000 # default
|
||
|
environment:
|
||
|
- INIT_ASSETS=1 # default
|
||
|
restart: unless-stopped
|