From 26e6b914b5bc0b00de477501ddc2276565e314ef Mon Sep 17 00:00:00 2001 From: Chris Klann Date: Tue, 13 Apr 2021 20:05:42 -0500 Subject: [PATCH] Update install.md Add a tip to fix linux/arm/v7 on RP4 when getting 'Fatal Python error: init_interp_main: can't initialize time' --- docs/docs/getting-started/install.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/docs/getting-started/install.md b/docs/docs/getting-started/install.md index 737d20e48..6d0999e08 100644 --- a/docs/docs/getting-started/install.md +++ b/docs/docs/getting-started/install.md @@ -10,6 +10,12 @@ To deploy docker on your local network it is highly recommended to use docker to - linux/arm/v7 - linux/arm64 +!!! tip "Fix for linux/arm/v7 container on Raspberry Pi 4: 'Fatal Python error: init_interp_main: can't initialize time'" + Update the host RP4 using [instructions](linuxserver/docker-papermerge#4 (comment)), summarized here: +```shell + wget http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.1-1_armhf.deb + sudo dpkg -i libseccomp2_2.5.1-1_armhf.deb +``` ## Quick Start - Docker CLI Deployment with the Docker CLI can be done with `docker run` and specify the database type, in this case `sqlite`, setting the exposed port `9925`, mounting the current directory, and pull the latest image. After the image is up an running you can navigate to http://your.ip.addres:9925 and you'll should see mealie up and running!