8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[Docker]: https://www.docker.com/
[OCI]: https://opencontainers.org/
## 1. Quick Start
Fossil ships a `Dockerfile` at the top of its source tree which you can
build like so:
```
$ docker build -t fossil .
```
If the image built successfully, you can create a container from it and
test that it runs:
|
|
|
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[Docker]: https://www.docker.com/
[OCI]: https://opencontainers.org/
## 1. Quick Start
Fossil ships a `Dockerfile` at the top of its source tree,
[here](/file/Dockerfile), which you can build like so:
```
$ docker build -t fossil .
```
If the image built successfully, you can create a container from it and
test that it runs:
|