Home Organizr Docker Configuration
Post
Cancel

Organizr Docker Configuration

Organizr Docker Configuration

docker-compose.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
version: "3"
services:
  organizr:
    container_name: organizr
    entrypoint:
      - /init
    hostname: organizr
    image: organizr/organizr:latest
    ports:
      - 8001:80/tcp
    restart: unless-stopped
    volumes:
      - /home/docker/organizr:/config
This post is licensed under CC BY 4.0 by the author.