mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
27 lines
434 B
YAML
27 lines
434 B
YAML
# https://docs.organizr.app/
|
|
# https://demo.organizr.app/#Organizr
|
|
#
|
|
|
|
name: organizr
|
|
|
|
services:
|
|
organizr:
|
|
container_name: organizr
|
|
hostname: organizr
|
|
image: organizr/organizr:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8777:80
|
|
volumes:
|
|
- ./config:/config
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Vienna
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|