feat: improve ec2 docs

This commit is contained in:
Fu Zi Xiang 2023-12-27 15:15:25 +08:00
parent e17a3ec92a
commit d2a957e5ff
No known key found for this signature in database
1 changed files with 16 additions and 4 deletions

View File

@ -19,13 +19,25 @@ If you have any questions, please feel free to reach out to us on [Discord](http
## Installing Docker Compose on Your EC2 Ubuntu Instance
- Follow the official guide for docker installation on Ubuntu: [docker install guide](https://docs.docker.com/engine/install/ubuntu/#installation-methods)
- After it's installed, verify the installation:
1. **Follow the official guide for docker installation on Ubuntu: [docker install guide](https://docs.docker.com/engine/install/ubuntu/#installation-methods)**
2. **After it's installed, verify the installation**
```bash
docker compose version
# Docker Compose version v2.21.0
```
3. **Ensure that the docker daemon is running**
```bash
sudo systemctl enable --now docker
```
4. **Add current user to Docker Group (optional, to run Docker commands without `sudo`)**
```bash
sudo usermod -aG docker ${USER}
sudo systemctl restart docker
```
## Installing AppFlowy-Cloud
1. **Clone Repository**:
@ -56,13 +68,13 @@ If you have any questions, please feel free to reach out to us on [Discord](http
5. **Start AppFlowy Services**:
Launch the services using Docker Compose:
```bash
sudo docker compose up -d
docker compose up -d
```
6. **Verify Service Status**:
Check that all services are running:
```bash
sudo docker ps -a
docker ps -a
```
## Post Install