1
0
Fork 0
mirror of synced 2024-05-20 20:52:36 +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

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:
```bash
mkdir appwrite-ce && \
cd appwrite-ce && \
curl -o docker-compose.yml https://appwrite.io/docker-compose.yml?version=0.4.0&port=80 && \
docker-compose up -d --remove-orphans
mkdir appwrite-ce && cd appwrite-ce && \
docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/install/appwrite:rw \
appwrite/install
```