Skip to content

Commit 86be5c0

Browse files
committed
feat(docker): readme syntax fix
1 parent 35e2565 commit 86be5c0

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

docker/README.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
## Docker
22
You can use docker to test issues you have with the SDK.
33

4-
1. Install docker
5-
- Mac: <https://docs.docker.com/docker-for-mac/install/>
6-
- Windows: <https://docs.docker.com/docker-for-windows/install/>
4+
1. Install docker
5+
- Mac: <https://docs.docker.com/docker-for-mac/install/>
6+
- Windows: <https://docs.docker.com/docker-for-windows/install/>
77

8-
2. Download the dockerfile for this SDK and edit as needed.
9-
- Change the it version as needed `FROM ruby:<your-version>`
10-
- For valid ruby base images on docker see <https://hub.docker.com/_/ruby>
11-
- Copy code/file that you wish to test into the dockerfile
12-
- Add line `COPY <src>... <dest>`
13-
- Set dockerfile to execute code file
14-
- Add line `CMD [ "<executable>" ]`
8+
2. Download the dockerfile for this SDK and edit as needed.
9+
- Change the ruby version as needed `FROM ruby:<your-version>`
10+
- For valid ruby base images on docker see <https://hub.docker.com/_/ruby>
1511

16-
- For more information on dockerfile construction please visit <https://docs.docker.com/engine/reference/builder/>
12+
- Copy code/file that you wish to test into the dockerfile
13+
- Add line `COPY <src>... <dest>`
1714

18-
3. Build and run the docker image.
19-
- Navigate to docker file directory
20-
- To build the docker image run `docker build --tag=<your-tag> .`
21-
- To run the docker image run `docker run <your-tag>`
15+
- Set dockerfile to execute code file
16+
- Add line `CMD [ "<executable>" ]`
17+
18+
- For more information on dockerfile construction please visit <https://docs.docker.com/engine/reference/builder/>
19+
20+
3. Build and run the docker image.
21+
- Navigate to docker file directory
22+
- To build the docker image run `docker build --tag=<your-tag> .`
23+
- To run the docker image run `docker run <your-tag>`

0 commit comments

Comments
 (0)