fix
This commit is contained in:
parent
b8d9428f0e
commit
b9120aad76
|
@ -0,0 +1,5 @@
|
|||
builddocker:
|
||||
docker build -t allanl95/getting-started-bootdotdev .
|
||||
|
||||
pushdocker:
|
||||
docker push allanl95/getting-started-bootdotdev
|
|
@ -8,18 +8,12 @@ Congratulations! You have started the container for this tutorial!
|
|||
Let's first explain the command that you just ran. In case you forgot,
|
||||
here's the command:
|
||||
|
||||
This is our fork of Docker's getting started image (our fork adds CORS headers so our tests can connect)
|
||||
|
||||
```cli
|
||||
docker run -d -p 80:80 allanl95/getting-started-bootdotdev
|
||||
```
|
||||
|
||||
You can try dockers official image by running:
|
||||
|
||||
```cli
|
||||
docker run -d -p 80:80 docker/getting-started
|
||||
```
|
||||
|
||||
(Note Boot.dev's HTTP tests will not work against Docker's official image)
|
||||
|
||||
You'll notice a few flags being used. Here's some more info on them:
|
||||
|
||||
- `-d` - run the container in detached mode (in the background)
|
||||
|
|
Loading…
Reference in New Issue