21 lines
465 B
YAML
21 lines
465 B
YAML
version: "3.6"
|
|
services:
|
|
organizr:
|
|
container_name: organizr
|
|
hostname: organizr
|
|
image: organizr/organizr:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8881:80
|
|
volumes:
|
|
- /home/mikee/docker/oragnizr/config:/config
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Paris
|
|
networks:
|
|
- HomeProxy
|
|
networks:
|
|
HomeProxy:
|
|
external: true
|