diff options
| author | 2023-03-07 19:33:49 +1000 | |
|---|---|---|
| committer | 2023-03-07 10:33:49 +0100 | |
| commit | 1c502aaac2d53ca652e21c4e3ccd47362812626b (patch) | |
| tree | ed264aa0363b0d72ed49514015899829254d12d7 /Docker/README.md | |
| parent | 76d547d830f25fd8ba54ebe0bf2bbdf217b837ed (diff) | |
Add docker-compose instructions for ARM64 (#5175)
* Add docker-compose instructions for ARM64
* Update Docker/README.md
* Update Docker/README.md
---------
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'Docker/README.md')
| -rw-r--r-- | Docker/README.md | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/Docker/README.md b/Docker/README.md index a4c0e8289..3f41d1306 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -256,7 +256,7 @@ sudo nano /var/lib/docker/volumes/freshrss_data/_data/config.php ## Docker Compose -First, put variables such as passwords in your `.env` file (see [`example.env`](./freshrss/example.env)): +First, put variables such as passwords in your `.env` file, which can live where your `docker-compose.yml` should be. See [`example.env`](./freshrss/example.env). ```ini ADMIN_EMAIL=admin@example.net @@ -381,6 +381,27 @@ docker-compose down --remove-orphans --volumes > ℹ️ You can combine it with `-f docker-compose-db.yml` to spin a PostgreSQL database. +### Docker Compose and ARM64 + +If you’re working or want to host on an ARM64 system (such as Apple Silicon (M1/M2)) you’ll need to use the `arm` tag in your `docker-compose.yml` file: +```yaml +image: freshrss/freshrss:arm +``` + +If you then get this error message when running `docker compose up`: + +> The requested image's platform (linux/arm/v7) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested + +… you will also need to specify the platform in the `service` part: + +```yaml +services: + freshrss: + image: freshrss/freshrss:arm + platform: linux/arm/v7 + container_name: freshrss + ``` + ## Run in production For production, it is a good idea to use a reverse proxy on your host server, providing HTTPS. |
