Skip to content

Commit

Permalink
Specify docker-compose project to avoid using directory as project na…
Browse files Browse the repository at this point in the history
…me and tear up/down dissynchronisation
  • Loading branch information
hbenali committed Jan 10, 2024
1 parent 627332e commit 363ef97
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gce.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ sudo sysctl -w vm.max_map_count=262144
```
## Start Meeds
```bash
docker-compose up -d
docker-compose logs -f meeds
docker-compose -p demo up -d
docker-compose -p demo logs -f meeds
```

Wait for Meeds startup. A log message should appear:
Expand All @@ -25,15 +25,15 @@ After Meeds startup. Click on `Web preview` <walkthrough-web-preview-icon></walk
Hope you enjoyed Meeds. You can tear down the server by following one of these options:
- To stop Meeds without removing docker containers:
```bash
docker-compose stop
docker-compose -p demo stop
```
- To stop Meeds with removing docker containers:
```bash
docker-compose down
docker-compose -p demo down
```
- To stop Meeds with removing docker containers and volumes:
```bash
docker-compose down -v
docker-compose -p demo down -v
```
You can start again meeds by following the previous step.

Expand Down

0 comments on commit 363ef97

Please sign in to comment.