Bot Updating Documentation

pull/247/head
LinuxServer-CI 2024-09-12 14:37:49 +00:00
rodzic b8656389bb
commit 20623c0a60
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -14,7 +14,6 @@ title: planka
[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/planka.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/planka)
[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/planka.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/planka)
[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-planka%2Fjob%2Fmain%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-planka/job/main/)
[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fplanka%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/planka/latest/index.html)
[Planka](https://github.com/plankanban/planka/) is an elegant open source project tracking tool.
@ -68,7 +67,7 @@ services:
- PGID=1000
- TZ=Etc/UTC
- BASE_URL=https://planka.example.com
- DATABASE_URL=postgresql://user:password@planka-db/planka
- DATABASE_URL=postgresql://user:password@planka-db:5432/planka
- SECRET_KEY=notasecretkey
- TRUST_PROXY=0
volumes:
@ -87,7 +86,7 @@ docker run -d \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e BASE_URL=https://planka.example.com \
-e DATABASE_URL=postgresql://user:password@planka-db/planka \
-e DATABASE_URL=postgresql://user:password@planka-db:5432/planka \
-e SECRET_KEY=notasecretkey \
-e TRUST_PROXY=0 \
-p 1337:1337 \
@ -114,7 +113,7 @@ Containers are configured using parameters passed at runtime (such as those abov
| `PGID=1000` | for GroupID - see below for explanation |
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `BASE_URL=https://planka.example.com` | The URL you will use to access planka including protocol, and port if not 80/443. |
| `DATABASE_URL=postgresql://user:password@planka-db/planka` | Postgres database URL. Special characters must be [url encoded](https://en.wikipedia.org/wiki/Percent-encoding). |
| `DATABASE_URL=postgresql://user:password@planka-db:5432/planka` | Postgres database URL. Special characters must be [url encoded](https://en.wikipedia.org/wiki/Percent-encoding). |
| `SECRET_KEY=notasecretkey` | Session encryption key, recommended 32-64 character alphanumeric. |
| `TRUST_PROXY=0` | Set to `1` to trust upstream proxies if reverse proxying. |