18 lines
447 B
YAML
18 lines
447 B
YAML
services:
|
|
homer:
|
|
image: b4bz/homer
|
|
container_name: homer
|
|
volumes:
|
|
- ./homer/config:/www/assets # Make sure your local config directory exists
|
|
ports:
|
|
- 8090:8080
|
|
# - 8080:8080
|
|
|
|
user: 1000:1000 # default
|
|
environment:
|
|
- INIT_ASSETS=1 # default, requires the config directory to be writable for the container user (see user option)
|
|
restart: unless-stopped
|
|
dns:
|
|
- 1.1.1.1
|
|
- 8.8.8.8
|