17 lines
341 B
YAML
Executable File
17 lines
341 B
YAML
Executable File
version: '3'
|
|
|
|
services:
|
|
ombi:
|
|
container_name: ombi
|
|
hostname: ombi
|
|
image: linuxserver/ombi:latest
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Chicago
|
|
ports:
|
|
- 3579:3579/tcp
|
|
restart: always
|
|
volumes:
|
|
- /docker/appdata/ombi/config:/config
|
|
- /etc/localtime:/etc/localtime:ro |