]> git.p6c8.net - jirafeau_project.git/blob - docker/README.md
[FEATURE] more option docker options
[jirafeau_project.git] / docker / README.md
1 # Run Jirafeau through a pre-made Docker image
2
3 Jirafeau is a small PHP application so running it inside a docker is pretty straightforward.
4
5 ```
6 docker pull mojo42/jirafeau:latest
7 docker run -d -p 8080:80 mojo42/jirafeau:latest
8 ```
9
10 Then connect on [locahost:8080](http://localhost:8080/).
11 The admin console is located on `/admin.php`, check console output to get auto-generated admin password.
12
13 # Build your own Jirafeau docker image
14
15 ```
16 git clone https://gitlab.com/mojo42/Jirafeau.git
17 cd Jirafeau
18 docker build -t your/jirafeau:latest .
19 ```
20
21 # Security
22
23 You may be interested to run Jirafeau on port 80:
24 ```
25 docker run -d -p 80:80 --sysctl net.ipv4.ip_unprivileged_port_start=80 mojo42/jirafeau
26 ```
27
28 Note that Jirafeau image does not provide any SSL/TLS. You may be interrested in using [docker compose](https://docs.docker.com/compose/) combined with [Let's Encrypt](https://letsencrypt.org/).
29
30 # Options
31
32 Jirafeau docker image accept some options through environment variables to ease its configuration.
33 More details about options in `lib/config.original.php`.
34
35 Available options:
36 - `ADMIN_PASSWORD`: setup a specific admin password. If not set, a random password will be generated.
37 - `WEB_ROOT`: setup a specific domain to point at when generating links (e.g. 'jirafeau.mydomain.com/').
38 - `VAR_ROOT`: setup a specific path where to place files. default: '/data'.
39 - `FILE_HASH`: can be set to `md5` (default), `partial_md5` or `random`.
40 - `PREVIEW`: set to 1 or 0 to enable or disable preview.
41 - `TITLE`: set Jirafeau instance title.
42 - `ORGANISATION`: set organisation (in ToS).
43 - `CONTACTPERSON`: set contact person (in ToS).
44 - `STYLE`: apply a specific style.
45 - `AVAILABILITY_DEFAULT`: setup which availability shows by default.
46 - `ONE_TIME_DOWNLOAD`: set to 1 or 0 to enable or disable one time downloads.
47 - `ENABLE_CRYPT`: set to 1 or 0 to enable or disable server side encryption.
48 - `DEBUG`: set to 1 or 0 to enable or disable debug mode.
49 - `MAXIMAL_UPLOAD_SIZE`: maximal file size allowed (expressed in MB).
50 - `UPLOAD_PASSWORD`: set one or more passwords to access Jirafeau (separated by comma).
51 - `UPLOAD_IP`: set one or more ip allowed to upload files (separated by comma).
52 - `UPLOAD_IP_NO_PASSWORD`: set one or more ip allowed to upload files without password (separated by comma).
53 - `PROXY_IP`: set one or more proxy ip (separated by comma).
54 - `STORE_UPLOADER_IP`: set to 1 or 0 to enable or disable keeping sender's IP with the _link_ file.
55
56 ## Few notes
57
58 - `var-...` folder where lives all uploaded data is protected from direct access
59 - Image has been made using [Alpine Linux](https://alpinelinux.org/) with [lighttpd](https://www.lighttpd.net/) which makes the container very light and start very quickly

patrick-canterino.de