Skip to content

Commit 0aa5ee1

Browse files
committed
Use new docker compose syntax
1 parent 6069d89 commit 0aa5ee1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workshop/content/docs/introduction/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ setup provided to you is actually working. The configuration file for Docker Com
5252

5353
```bash
5454
cd workshop/exercises
55-
docker-compose up
55+
docker compose up
5656
```
5757

5858
2. Open <http://localhost:5000> in your browser, you should see an error message!
@@ -69,11 +69,11 @@ setup provided to you is actually working. The configuration file for Docker Com
6969
You may also run the Docker container in the background (detached) as follows:
7070

7171
```bash
72-
docker-compose up -d
72+
docker compose up -d
7373
docker ls # verify that the mapserver container is running
7474
# visit http://localhost:5000 in your browser
7575
docker logs --follow mapserver # view logs
76-
docker-compose stop
76+
docker compose stop
7777
```
7878

7979
## Folder Structure

0 commit comments

Comments
 (0)