22 lines
561 B
YAML
Executable File
22 lines
561 B
YAML
Executable File
#docker create \
|
|
# --name=organizr \
|
|
# -v <path to data>:/config \
|
|
# -e PGID=<gid> -e PUID=<uid> \
|
|
# -p 80:80 \
|
|
# -e fpm="false" \ # optional
|
|
# -e branch="v2-master" \ # optional
|
|
# organizr/organizr
|
|
version: "3.3"
|
|
services:
|
|
db:
|
|
image: "organizr/organizr"
|
|
container_name: organizr
|
|
environment:
|
|
- "PGID=100"
|
|
- "PUID=1000"
|
|
- "fpm=true"
|
|
volumes:
|
|
- "./data:/config"
|
|
ports:
|
|
- "8111:80"
|
|
restart: unless-stopped |