Back

Installation on Synology NAS errors

  • 0
  • General
minerdad
22 Aug, 2023, 20:52

Can anyone recommend a step by step guide to installing on synology NAS using docker? the problem i'm currently facing is depicted in the attached log; a

TL;DR
To install Appwrite on Synology NAS using Docker, follow these steps: 1. Install Docker Compose on your Synology NAS by following this tutorial: [link](https://linuxhint.com/docker-compose-with-synology/). 2. Run the following Unix command to install Appwrite: ```shell docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ appwrite/appwrite:1.3.8 ``` This command will create and
Binyamin
22 Aug, 2023, 22:50

Appwrite infrastructure is composed from 20 containers, meaning you can't start run it (there's non-maintained one image version) with one container only. What you'll need to do is to use <:docker:740465484373295127> Docker compose.

  1. Follow this tutorial to get Docker Compose in your Synology
  2. Then, run the one-liner Unix command to install Appwrite
TypeScript
docker run -it --rm \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
    --entrypoint="install" \
    appwrite/appwrite:1.3.8
Reply

Reply to this thread by joining our Discord

Reply on Discord

Need support?

Join our Discord

Get community support by joining our Discord server.

Join Discord

Get premium support

Join Appwrite Pro and get email support from our team.

Learn more