You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a quick installation of Catmandu using [Docker](https://www.docker.com) use the following command:
4
+
5
+
```
6
+
docker run -it librecat/catmandu
7
+
```
8
+
9
+
Now you should be able to run Catmandu in the Docker terminal:
10
+
11
+
```
12
+
catmandu@d45e783d0bca:~$ catmandu help
13
+
```
14
+
15
+
To have access to your local files use one of the following commands:
16
+
17
+
Windows:
18
+
19
+
```
20
+
docker run -v C:\Users\yourname:/home/catmandu/Home -it librecat/catmandu
21
+
```
22
+
23
+
OSX:
24
+
25
+
```
26
+
docker run -v /Users/yourname:/home/catmandu/Home -it librecat/catmandu
27
+
```
28
+
29
+
Linux:
30
+
31
+
```
32
+
docker run -v /home/yourname:/home/catmandu/Home -it librecat/catmandu
33
+
```
34
+
35
+
For more information about the Catmandu extension that are available in the Docker image check the [docker-catmandu](https://github.com/LibreCat/docker-catmandu) project.
0 commit comments