16 lines
303 B
YAML
16 lines
303 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
organizr:
|
||
|
container_name: organizr
|
||
|
environment:
|
||
|
- "PUID=${PUID}"
|
||
|
- "PGID=${PGID}"
|
||
|
- "TZ=${TZ}"
|
||
|
image: linuxserver/organizr
|
||
|
ports:
|
||
|
- "${OGANIZRPORT}:80"
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- "${APPDATA}/organizr:/config"
|