Skip to content

Commit 9cc6996

Browse files
authored
add pwd doc
1 parent 82d316f commit 9cc6996

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

documentation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,13 @@ you can use the official [Docker image](https://hub.docker.com/r/kriskbx/gitlab-
7070
docker run \
7171
--rm -it \
7272
-v ~:/root \
73+
-v $(pwd):/pwd \
7374
kriskbx/gitlab-time-tracker \
7475
--help
7576
```
7677

7778
`--rm` removes the container after running, `-it` makes it interactive, `-v ~:/root` mounts your home directory to the
78-
home directory inside the container. If you want to store the config in another place, mount another directory:
79+
home directory inside the container, `-v ~$(pwd):/pwd` mounts current directory inside the container to gtt be able to read local config. If you want to store the config in another place, mount another directory:
7980

8081

8182
```shell

0 commit comments

Comments
 (0)