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 andAppwrite 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.
- Follow this tutorial to get Docker Compose in your Synology
- 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
Recommended threads
- Clean install of 1.9.0 shows errors in a...
I just run a full clean install of Appwrite on my server following the Manual installation guide in the docs page. The console seems to work, visually there d...
- Login via GitHub Student Developer Pack ...
- [SOLVED] How many projects can I make?
I have a GitHub education plan and am using Appwrite with the same plan. How many projects can I make with the Appwrite GitHub Education?