mirror of
https://github.com/penpot/penpot.git
synced 2025-05-17 20:26:10 +02:00
📎 Add minor improvements
This commit is contained in:
parent
953f770fdd
commit
332657bd1b
5 changed files with 6 additions and 9 deletions
|
@ -12,7 +12,7 @@ templateClass: tmpl-contributing-guide
|
||||||
{{ show_children(child) }}
|
{{ show_children(child) }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- if child.url == page.url -%}
|
{%- if child.url == page.url -%}
|
||||||
{{ content | toc(tags=['h2', 'h3']) | safe }}
|
{{ content | toc(tags=['h2', 'h3']) | stripHash | safe }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
</li>
|
</li>
|
||||||
{%- if loop.last -%}</ul>{%- endif -%}
|
{%- if loop.last -%}</ul>{%- endif -%}
|
||||||
|
|
|
@ -12,7 +12,7 @@ templateClass: tmpl-user-guide
|
||||||
{{ show_children(child) }}
|
{{ show_children(child) }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
{%- if child.url == page.url -%}
|
{%- if child.url == page.url -%}
|
||||||
{{ content | toc(tags=['h2', 'h3']) | safe }}
|
{{ content | toc(tags=['h2', 'h3']) | stripHash | safe }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
</li>
|
</li>
|
||||||
{%- if loop.last -%}</ul>{%- endif -%}
|
{%- if loop.last -%}</ul>{%- endif -%}
|
||||||
|
|
|
@ -25,7 +25,7 @@ You can install it following the <a href="https://docs.docker.com/desktop/"
|
||||||
target="_blank">official guide</a>.
|
target="_blank">official guide</a>.
|
||||||
|
|
||||||
Docker Desktop has a graphical control panel (GUI) to manage the service and view the
|
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.
|
PowerShell in Windows) to build and run the containers, and execute other operations.
|
||||||
|
|
||||||
It already includes **docker compose** utility, needed by Penpot.
|
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
|
## 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
|
<a
|
||||||
href="https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml"
|
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
|
```bash
|
||||||
wget https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml
|
wget https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml
|
||||||
|
|
|
@ -12,9 +12,6 @@ open-source software! This means you can deploy a dedicated instance of Penpot i
|
||||||
minutes. You’ll be relieved of the need to worry about DNS configuration, SMTP, backups,
|
minutes. You’ll be relieved of the need to worry about DNS configuration, SMTP, backups,
|
||||||
SSL certificates, OS & Penpot upgrades, and much more.
|
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
|
## Get an Elestio account
|
||||||
|
|
||||||
<p class="advice">
|
<p class="advice">
|
||||||
|
|
|
@ -65,7 +65,7 @@ To install the chart with the release name `my-release`:
|
||||||
helm install my-release penpot/penpot
|
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,
|
argument to helm install. For example,
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue