Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Related Tools

Notices

Reply
 
Thread Tools Search this Thread
Old 07-03-2023, 11:28 AM   #241
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

ha, no docker found - guess the reason is that this (pigallery) should run on my second PI
huber70 is offline   Reply With Quote
Old 07-03-2023, 11:32 AM   #242
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70



On the same pi as calibre-web?
mariosipad is offline   Reply With Quote
Advert
Old 07-03-2023, 11:37 AM   #243
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

no, the other

Steps I started with

sudo apt update
sudo apt upgrade

curl -sSL https://get.docker.com | sh

Last edited by huber70; 07-03-2023 at 12:07 PM.
huber70 is offline   Reply With Quote
Old 07-03-2023, 04:46 PM   #244
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70

And ended with a working photo gallery?
mariosipad is offline   Reply With Quote
Old 07-03-2023, 05:17 PM   #245
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

oh no, I followed (tried to follow) the steps as described on

https://www.makeuseof.com/how-to-ins...-raspberry-pi/

but - nothing, guess I didn't understood the input to the .yml file:

wrote:

version: '3'
services:
pigallery2:
image: bpatrik/pigallery2:latest
container_name: pigallery2
environment:
- NODE_ENV=production
volumes:
- "./pigallery2/config:/app/data/config" # CHANGE ME
- "db-data:/app/data/db"
- "./pigallery2/images:/app/data/images:ro" # CHANGE ME, ':ro' mean read-only
- "./pigallery2/tmp:/app/data/tmp" # CHANGE ME
ports:
- 80:80
restart: always

volumes:
db-data:

Don't know what to keep and what to change
huber70 is offline   Reply With Quote
Advert
Old 07-03-2023, 05:27 PM   #246
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70

therefore use:
Code:
docker run -d \
   --name=pigallery2 \
   -p 8282:80 \
   -e NODE_ENV=production \
   -v /home/pi/Docker/pigallery2/config:/app/data/config \
   -v /home/pi/Docker/pigallery2/db:/app/data/db \
   -v /home/pi/Docker/pigallery2/images:/app/data/images \
   -v /home/pi/Docker/pigallery2/tmp:/app/data/tmp \
   --restart=unless-stopped \
   bpatrik/pigallery2:latest
mariosipad is offline   Reply With Quote
Old 07-03-2023, 05:33 PM   #247
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
results in the following:

> --name=pigallery2 \
> -p 8282:80 \
> -e NODE_ENV=production \
> -v /home/pi/Docker/pigallery2/config:/app/data/config \
> -v /home/pi/Docker/pigallery2/db:/app/data/db \
> -v /home/pi/Docker/pigallery2/images:/app/data/images \
> -v /home/pi/Docker/pigallery2/tmp:/app/data/tmp \
> --restart=unless-stopped \
> bpatrik/pigallery2:latest
docker: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create?name=pigallery2": dial unix /var/run/docker.sock: connect: permission denied.
See 'docker run --help'.
huber70 is offline   Reply With Quote
Old 07-03-2023, 05:40 PM   #248
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70

sudo usermod -aG docker pi

then logout of the pi and login again
mariosipad is offline   Reply With Quote
Old 07-03-2023, 05:52 PM   #249
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

ok, did it and run the script again with the following:

docker run -d \
> --name=pigallery2 \
> -p 8282:80 \
> -e NODE_ENV=production \
> -v /home/pi/Docker/pigallery2/config:/app/data/config \
> -v /home/pi/Docker/pigallery2/db:/app/data/db \
> -v /home/pi/Docker/pigallery2/images:/app/data/images \
> -v /home/pi/Docker/pigallery2/tmp:/app/data/tmp \
> --restart=unless-stopped \
> bpatrik/pigallery2:latest
Unable to find image 'bpatrik/pigallery2:latest' locally
latest: Pulling from bpatrik/pigallery2
330ad28688ae: Pull complete
55fd9a82ebad: Pull complete
baa5a071f818: Pull complete
91c48c827d3f: Pull complete
74f56d374b73: Pull complete
6e22f38353da: Pull complete
4885a33ad691: Pull complete
539bcb559b72: Pull complete
83b059a6bb9d: Pull complete
Digest: sha256:d554a370b7189421b33ccf9faa66fbfb61f9050ca0f 04ef259830e2e00d5aaba
Status: Downloaded newer image for bpatrik/pigallery2:latest
2aa1aaff8d012fe2b910b9bcd6077770e9079ac04e13984e79 4d059354a8c4ee

äh - and now?
huber70 is offline   Reply With Quote
Old 07-03-2023, 06:02 PM   #250
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70

In a browser:

http://<IPofPi>:8282

Login is admin admin
mariosipad is offline   Reply With Quote
Old 07-03-2023, 08:50 PM   #251
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

sorry, no connection
huber70 is offline   Reply With Quote
Old 07-04-2023, 03:27 AM   #252
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70

What is the output of:

docker images

and

docker ps -a

and

docker ps

?

Last edited by mariosipad; 07-04-2023 at 04:30 AM.
mariosipad is offline   Reply With Quote
Old 07-04-2023, 04:42 AM   #253
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

here we go:

pi@raspberrypi:~ $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hello-world latest 38d49488e3b0 2 months ago 4.85kB
bpatrik/pigallery2 latest 55f2c95b5de3 5 months ago 573MB

pi@raspberrypi:~ $ docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2d6a83b6ae47 hello-world "/hello" 8 hours ago Exited (0) 8 hours ago nifty_bhaskara
2aa1aaff8d01 bpatrik/pigallery2:latest "node ./src/backend/…" 11 hours ago Restarting (132) 2 seconds ago pigallery2
0c24806e9f28 hello-world "/hello" 15 hours ago Exited (0) 15 hours ago

pi@raspberrypi:~ $ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2aa1aaff8d01 bpatrik/pigallery2:latest "node ./src/backend/…" 11 hours ago Restarting (132) 41 seconds ago pigallery2
huber70 is offline   Reply With Quote
Old 07-04-2023, 05:21 AM   #254
mariosipad
Guru
mariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watchmariosipad is clearly one to watch
 
Posts: 725
Karma: 10738
Join Date: Nov 2012
Device: iPad & iPhone with Marvin 2 + 3 & Kobo Glo HD
@huber70

http://192.168.xxx.yyy:8282

and put some pictures in /home/pi/Docker/pigallery2/images
mariosipad is offline   Reply With Quote
Old 07-04-2023, 06:23 AM   #255
huber70
Addict
huber70 has learned how to buy an e-book online
 
Posts: 274
Karma: 96
Join Date: Nov 2017
Location: Germany
Device: Tolino Vision6
@mariosipad

that's what I already did - no effect
huber70 is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
COPS : Calibre OPDS PHP Server vlad59 Related Tools 1923 04-22-2025 05:33 PM
OPDS in php or populate metadata.db from filesystem skelos Related Tools 0 09-06-2019 11:03 AM
php??? crutledge ePub 13 01-24-2014 06:27 PM
Which PHP version do you have? erayd Workshop 2 10-04-2010 08:02 PM


All times are GMT -4. The time now is 11:54 AM.


MobileRead.com is a privately owned, operated and funded community.