Commit 322d54ef authored by Markus Mößler's avatar Markus Mößler
Browse files

updated docker compose commands

parent 6e4b77f6
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ cd tornado-backend/
## Step 2) Start multi-container app

```bash
docker-compose up
docker compose up
```

## Step 3) Check container status and restart blog container
@@ -24,7 +24,7 @@ docker-compose up
Check container status,

```bash
docker-compose ps
docker compose ps
```

which results in, e.g.,
@@ -37,7 +37,7 @@ tornado-backend-postgres-1 postgres:10.3 "docker-entrypoint.s…" post
The blog container will most likely not start at the first time. Restart the blog container,

```bash
docker-compose restart blog
docker compose restart blog
```

## Step 4) Use the blog web app
@@ -101,5 +101,5 @@ Exit the psql terminal,
## Step 6) Stop the container

```bash
docker-compose down
docker compose down
```