0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-16 00:41:25 -05:00

📎 Add minor improvements

This commit is contained in:
Yamila Moreno 2025-03-11 12:45:12 +01:00
parent 953f770fdd
commit 332657bd1b
5 changed files with 6 additions and 9 deletions

View file

@ -12,7 +12,7 @@ templateClass: tmpl-contributing-guide
{{ show_children(child) }}
{%- endif -%}
{%- if child.url == page.url -%}
{{ content | toc(tags=['h2', 'h3']) | safe }}
{{ content | toc(tags=['h2', 'h3']) | stripHash | safe }}
{%- endif -%}
</li>
{%- if loop.last -%}</ul>{%- endif -%}

View file

@ -12,7 +12,7 @@ templateClass: tmpl-user-guide
{{ show_children(child) }}
{%- endif -%}
{%- if child.url == page.url -%}
{{ content | toc(tags=['h2', 'h3']) | safe }}
{{ content | toc(tags=['h2', 'h3']) | stripHash | safe }}
{%- endif -%}
</li>
{%- if loop.last -%}</ul>{%- endif -%}

View file

@ -25,7 +25,7 @@ You can install it following the <a href="https://docs.docker.com/desktop/"
target="_blank">official guide</a>.
Docker Desktop has a graphical control panel (GUI) to manage the service and view the
containers, images and volumes. But need the command line (Terminal in Linux and Mac, or
containers, images and volumes. But you need the command line (Terminal in Linux and Mac, or
PowerShell in Windows) to build and run the containers, and execute other operations.
It already includes **docker compose** utility, needed by Penpot.
@ -49,10 +49,10 @@ You can easily check which version of **docker compose** you have. If you can ex
## Start Penpot
As first step you will need to obtain the <code class="language-bash">docker-compose.yaml</code> file. You can download it
As a first step you will need to obtain the <code class="language-bash">docker-compose.yaml</code> file. You can download it
<a
href="https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml"
target="_blank">from Penpot repository</a>.
target="_blank">from the Penpot repository</a>.
```bash
wget https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml

View file

@ -12,9 +12,6 @@ open-source software! This means you can deploy a dedicated instance of Penpot i
minutes. Youll be relieved of the need to worry about DNS configuration, SMTP, backups,
SSL certificates, OS & Penpot upgrades, and much more.
It uses the same Docker configuration as the other installation option, below, so all
customization options are the same.
## Get an Elestio account
<p class="advice">

View file

@ -65,7 +65,7 @@ To install the chart with the release name `my-release`:
helm install my-release penpot/penpot
```
You can customize the installation specify each parameter using the `--set key=value[,key=value]`
You can customize the installation by specifying each parameter using the `--set key=value[,key=value]`
argument to helm install. For example,
```bash