Skip to content

daemonless/organizr

Repository files navigation

Organizr

HTPC/Homelab Services Organizer on FreeBSD.

Port 8083
Registry ghcr.io/daemonless/organizr
Docs daemonless.io/images/organizr
Source https://github.com/causefx/Organizr
Website https://organizr.app/

Deployment

Podman Compose

services:
  organizr:
    image: ghcr.io/daemonless/organizr:latest
    container_name: organizr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=UTC
    volumes:
      - /path/to/containers/organizr:/config
    ports:
      - 8083:8083
    restart: unless-stopped

Podman CLI

podman run -d --name organizr \
  -p 8083:8083 \
  -e PUID=@PUID@ \
  -e PGID=@PGID@ \
  -e TZ=@TZ@ \
  -v /path/to/containers/organizr:/config \
  ghcr.io/daemonless/organizr:latest

Access at: http://localhost:8083

Ansible

- name: Deploy organizr
  containers.podman.podman_container:
    name: organizr
    image: ghcr.io/daemonless/organizr:latest
    state: started
    restart_policy: always
    env:
      PUID: "@PUID@"
      PGID: "@PGID@"
      TZ: "@TZ@"
    ports:
      - "8083:8083"
    volumes:
      - "/path/to/containers/organizr:/config"

Configuration

Environment Variables

Variable Default Description
PUID 1000 User ID for the application process
PGID 1000 Group ID for the application process
TZ UTC Timezone for the container

Volumes

Path Description
/config Configuration directory (database, logos)

Ports

Port Protocol Description
8083 TCP

Notes

  • Architectures: amd64
  • User: bsd (UID/GID set via PUID/PGID)
  • Base: Built on ghcr.io/daemonless/base (FreeBSD)

Packages

 
 
 

Contributors