]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - doc/md/docker/shaarli-images.md
docker: update image and usage documentation
[github/shaarli/Shaarli.git] / doc / md / docker / shaarli-images.md
1 A brief guide on getting starting using docker is given in [Docker 101](docker-101.md).
2 To learn more about user data and how to keep it across versions, please see [Upgrade and Migration](../Upgrade-and-migration.md).
3
4 ## Get and run a Shaarli image
5
6 ### DockerHub repository
7 The images can be found in the [`shaarli/shaarli`](https://hub.docker.com/r/shaarli/shaarli/)
8 repository.
9
10 ### Available image tags
11 - `latest`: latest branch
12 - `master`: master branch
13 - `stable`: stable branch
14
15 The `latest` and `master` images rely on:
16
17 - [Alpine Linux](https://www.alpinelinux.org/)
18 - [PHP7-FPM](http://php-fpm.org/)
19 - [Nginx](http://nginx.org/)
20
21 The `stable` image relies on:
22
23 - [Debian 8 Jessie](https://hub.docker.com/_/debian/)
24 - [PHP5-FPM](http://php-fpm.org/)
25 - [Nginx](http://nginx.org/)
26
27 Additional Dockerfiles are provided for the `arm32v7` platform, relying on
28 [Linuxserver.io Alpine armhf
29 images](https://hub.docker.com/r/lsiobase/alpine.armhf/). These images must be
30 built using [`docker
31 build`](https://docs.docker.com/engine/reference/commandline/build/) on an
32 `arm32v7` machine or using an emulator such as
33 [qemu](https://resin.io/blog/building-arm-containers-on-any-x86-machine-even-dockerhub/).
34
35 ### Download from DockerHub
36 ```bash
37 $ docker pull shaarli/shaarli
38 latest: Pulling from shaarli/shaarli
39 32716d9fcddb: Pull complete
40 84899d045435: Pull complete
41 4b6ad7444763: Pull complete
42 e0345ef7a3e0: Pull complete
43 5c1dd344094f: Pull complete
44 6422305a200b: Pull complete
45 7d63f861dbef: Pull complete
46 3eb97210645c: Pull complete
47 869319d746ff: Already exists
48 869319d746ff: Pulling fs layer
49 902b87aaaec9: Already exists
50 Digest: sha256:f836b4627b958b3f83f59c332f22f02fcd495ace3056f2be2c4912bd8704cc98
51 Status: Downloaded newer image for shaarli/shaarli:latest
52 ```
53
54 ### Create and start a new container from the image
55 ```bash
56 # map the host's :8000 port to the container's :80 port
57 $ docker create -p 8000:80 shaarli/shaarli
58 d40b7af693d678958adedfb88f87d6ea0237186c23de5c4102a55a8fcb499101
59
60 # launch the container in the background
61 $ docker start d40b7af693d678958adedfb88f87d6ea0237186c23de5c4102a55a8fcb499101
62 d40b7af693d678958adedfb88f87d6ea0237186c23de5c4102a55a8fcb499101
63
64 # list active containers
65 $ docker ps
66 CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
67 d40b7af693d6 shaarli/shaarli /usr/bin/supervisor 15 seconds ago Up 4 seconds 0.0.0.0:8000->80/tcp backstabbing_galileo
68 ```
69
70 ### Stop and destroy a container
71 ```bash
72 $ docker stop backstabbing_galileo # those docker guys are really rude to physicists!
73 backstabbing_galileo
74
75 # check the container is stopped
76 $ docker ps
77 CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
78
79 # list ALL containers
80 $ docker ps -a
81 CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
82 d40b7af693d6 shaarli/shaarli /usr/bin/supervisor 5 minutes ago Exited (0) 48 seconds ago backstabbing_galileo
83
84 # destroy the container
85 $ docker rm backstabbing_galileo # let's put an end to these barbarian practices
86 backstabbing_galileo
87
88 $ docker ps -a
89 CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
90 ```
91
92 ### Automatic builds
93
94 Docker users can start a personal instance from an [autobuild image](https://hub.docker.com/r/shaarli/shaarli/). For example to start a temporary Shaarli at ``localhost:8000``, and keep session data (config, storage):
95 ```
96 MY_SHAARLI_VOLUME=$(cd /path/to/shaarli/data/ && pwd -P)
97 docker run -ti --rm \
98 -p 8000:80 \
99 -v $MY_SHAARLI_VOLUME:/var/www/shaarli/data \
100 shaarli/shaarli
101 ```