aboutsummaryrefslogtreecommitdiff
path: root/Docker
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-03-02 22:53:04 +0100
committerGravatar GitHub <noreply@github.com> 2019-03-02 22:53:04 +0100
commit60b7f5e6d966bbfb9d3c24a3b51057abd9b6e718 (patch)
treedfdf9839db0ca4a32fb63d655a14702ce8c10d91 /Docker
parentfc8fb0a7ee0d98f8c31be3bd6e76719ebb0e68ee (diff)
Docker Ubuntu notes (#2259)
https://github.com/FreshRSS/FreshRSS/pull/2205 (And removed proxy_fcgi forgotten from php-fpm)
Diffstat (limited to 'Docker')
-rw-r--r--Docker/Dockerfile2
-rw-r--r--Docker/README.md14
2 files changed, 14 insertions, 2 deletions
diff --git a/Docker/Dockerfile b/Docker/Dockerfile
index 53feb31d4..8f15bec96 100644
--- a/Docker/Dockerfile
+++ b/Docker/Dockerfile
@@ -18,7 +18,7 @@ COPY . /var/www/FreshRSS
COPY ./Docker/*.Apache.conf /etc/apache2/sites-available/
RUN a2dismod -f alias autoindex negotiation status && \
- a2enmod deflate expires headers mime proxy_fcgi setenvif && \
+ a2enmod deflate expires headers mime setenvif && \
a2disconf '*' && \
a2dissite '*' && \
a2ensite 'FreshRSS*'
diff --git a/Docker/README.md b/Docker/README.md
index ac745c49d..ba6169ea3 100644
--- a/Docker/README.md
+++ b/Docker/README.md
@@ -10,6 +10,18 @@ sh get-docker.sh
```
+## [Docker tags](https://hub.docker.com/r/freshrss/freshrss/tags)
+The tags correspond to FreshRSS branches and versions:
+* `:latest` (default) is the `master` branch, more stable
+* `:dev` is the `dev` branch, rolling release
+* `:x.y.z` are specific FreshRSS releases
+
+### Linux: Ubuntu vs. Alpine
+Our default image is based on [Ubuntu](https://www.ubuntu.com/server). We offer an alternative based on [Alpine](https://alpinelinux.org/) (with the `-alpine` tag suffix).
+In [our tests](https://github.com/FreshRSS/FreshRSS/pull/2205), Ubuntu is ~3 times faster,
+while Alpine is ~2.5 times [smaller on disk](https://hub.docker.com/r/freshrss/freshrss/tags) (and much faster to build).
+
+
## Optional: Build Docker image of FreshRSS
Optional, as a *less recent* online image can be automatically fetched during the next step (run),
but online images are not available for as many platforms (e.g. Raspberry Pi / ARM) as if you build yourself.
@@ -20,7 +32,7 @@ git clone https://github.com/FreshRSS/FreshRSS.git
cd ./FreshRSS/
git pull
-sudo docker pull alpine:3.8
+sudo docker pull ubuntu:18.10
sudo docker build --tag freshrss/freshrss -f Docker/Dockerfile .
```