-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-readme
64 lines (44 loc) · 1.03 KB
/
docker-readme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Docker Image for Catmandu
## How to use this docker image
Starting this Catmandu image is easy:
```bash
docker run -it librecat/catmandu
```
Now, you should be able to run this command in the docker terminal:
```bash
catmandu@d45e783d0bca:~$ catmandu help
```
Upgrade an existing docker image to the latest version:
```bash
docker pull librecat/catmandu
```
Start docker with access to your own files:
Windows:
```bash
docker run -v C:\Users\yourname:/home/catmandu/Home -it librecat/catmandu
```
OSX:
```bash
docker run -v /Users/yourname:/home/catmandu/Home -it librecat/catmandu
```
Linux:
```bash
docker run -v /home/yourname:/home/catmandu/Home -it librecat/catmandu
```
# Build the Catmandu image from scratch
Clone the GitHub repository:
```bash
git clone https://github.com/LibreCat/docker-catmandu
```
Start your Docker host and change directory into `docker-catmandu`:
```bash
cd docker-catmandu
```
Build the image:
```bash
docker build -t test_catmandu .
```
Start the image:
```bash
docker run -it test_catmandu
```