Skip to content

Commit

Permalink
Update the instruction to use Docker compose v2 (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
sungwoncho committed Jan 28, 2024
1 parent 818ebcc commit 4dded18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions host/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ The official Dnote docker image.
## Installing Dnote Server Using Docker

1. Install [Docker](https://docs.docker.com/install/).
2. Install Docker [Compose](https://docs.docker.com/compose/install/).
3. Download the [docker-compose.yml](https://raw.githubusercontent.com/dnote/dnote/master/host/docker/docker-compose.yml) file by running:
2. Install Docker [Compose plugin](https://docs.docker.com/compose/install/linux/).
3. Download the [compose.yml](https://raw.githubusercontent.com/dnote/dnote/master/host/docker/compose.yml) file by running:

```
curl https://raw.githubusercontent.com/dnote/dnote/master/host/docker/docker-compose.yml > docker-compose.yml
curl https://raw.githubusercontent.com/dnote/dnote/master/host/docker/compose.yml > compose.yml
```

4. Run the following to download the images and run the containers

```
docker-compose pull
docker-compose up -d
docker compose pull
docker compose up -d
```

Visit http://localhost:3000 in your browser to see Dnote running.
Expand Down
File renamed without changes.

0 comments on commit 4dded18

Please sign in to comment.