mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 07:50:43 -05:00
📝 Update README
This commit is contained in:
parent
4ec303520b
commit
1f13b70c0c
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -4,6 +4,8 @@
|
|||
|
||||
[![License: MPL-2.0][uri_license_image]][uri_license]
|
||||
[![Build Status](https://travis-ci.org/Monogramm/uxbox.svg)](https://travis-ci.org/Monogramm/uxbox)
|
||||
[![Docker Automated buid](https://img.shields.io/docker/build/monogramm/uxbox.svg)](https://hub.docker.com/r/monogramm/uxbox/)
|
||||
[![Docker Pulls](https://img.shields.io/docker/pulls/monogramm/uxbox.svg)](https://hub.docker.com/r/monogramm/uxbox/)
|
||||
|
||||
# UXBOX #
|
||||
|
||||
|
@ -19,6 +21,20 @@ The open-source solution for design and prototyping. UXBOX is currently at an ea
|
|||
|
||||
UXBOX works with SVG, a standard format, for all your designs and prototypes . This means that all your stuff in UXBOX is portable and editable in many other vector tools and easy to use on the web.
|
||||
|
||||
## Persistent data
|
||||
The UXBOX installation and all data are stored in the database (file uploads, etc). The docker daemon will store that data within the docker directory `/var/lib/docker/volumes/...`. That means your data is saved even if the container crashes, is stopped or deleted.
|
||||
|
||||
To make your data persistent to upgrading and get access for backups is using named docker volume or mount a host folder. To achieve this you need one volume for your database container.
|
||||
|
||||
Database:
|
||||
- `/var/lib/mysql` MySQL / MariaDB Data
|
||||
- `/var/lib/postgresql/data` PostgreSQL Data
|
||||
```console
|
||||
$ docker run -d \
|
||||
-v db:/var/lib/postgresql/data \
|
||||
postgresql
|
||||
```
|
||||
|
||||
## Contributing ##
|
||||
|
||||
**Open to you!**
|
||||
|
|
Loading…
Reference in a new issue