1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

Updated README

This commit is contained in:
Eldad Fux 2020-03-19 16:34:53 +02:00
parent e8d4d1c349
commit 42aa43a72a
2 changed files with 6 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# Version 0.5.0 (PRE-RELEASE) - PLANNED # Version 0.5.0 (PRE-RELEASE)
## Features ## Features

View file

@ -46,10 +46,11 @@ Appwrite backend server is designed to run in a container environment. Running y
The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command make sure you have [Docker](https://www.docker.com/products/docker-desktop) installed on your machine: The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command make sure you have [Docker](https://www.docker.com/products/docker-desktop) installed on your machine:
```bash ```bash
mkdir appwrite-ce && \ mkdir appwrite-ce && cd appwrite-ce && \
cd appwrite-ce && \ docker run -it --rm \
curl -o docker-compose.yml https://appwrite.io/docker-compose.yml?version=0.4.0&port=80 && \ --volume /var/run/docker.sock:/var/run/docker.sock \
docker-compose up -d --remove-orphans --volume "$(pwd)"/appwrite:/install/appwrite:rw \
appwrite/install
``` ```