Skip to content

Commit 8ec97e8

Browse files
committed
Some further code block syntax missed in first pass.
1 parent e9dedeb commit 8ec97e8

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Suppose we want a build environment based on `alpine:latest` with a C compiler,
2828

2929
First create your `Dockerfile`:
3030

31-
```
31+
```dockerfile
3232
FROM alpine:latest
3333

3434
RUN apk update && apk add alpine-sdk clang openssh
@@ -37,7 +37,7 @@ RUN apk update && apk add alpine-sdk clang openssh
3737
and then add a file called `floki.yaml` to the root of your codebase:
3838

3939

40-
```
40+
```yaml
4141
image:
4242
build:
4343
name: hello-floki
@@ -55,8 +55,8 @@ Now run `floki`. You should see the docker container be built, and you will be d
5555

5656
It's recommended you add your user to the `docker` group:
5757

58-
```
59-
sudo usermod -a -G docker USERNAME
58+
```shell
59+
$ sudo usermod -a -G docker USERNAME
6060
```
6161

6262
and logout and in again to pick up the changes.

docs/content/documentation/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ draft: false
1111
It's recommended you add your user to the `docker` group:
1212

1313
```shell
14-
sudo usermod -a -G docker USERNAME
14+
$ sudo usermod -a -G docker USERNAME
1515
```
1616

1717
and logout and in again to pick up the changes.

0 commit comments

Comments
 (0)