-
-
Notifications
You must be signed in to change notification settings - Fork 77
Description
Hi,
I would like to run Jellystat on my docker setup on my ubuntu VM. When running the docker compose up, I get the error
Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "/docker/servarr/jellystat/jellystat-db/postgres-data" to rootfs at "/var/lib/postgresql/data": change mount propagation through procfd: open o_path procfd: open /var/lib/docker/overlay2/e88e650e3cbda6a435a05231dcabfad36a2fffb7b72766408b0c1dd42093485a/merged/var/lib/postgresql/data: no such file or directory: unknown
I tried to erase the images and retrieve new images, but I still get the same error. Here's my compose file for jellystat and the db. Can you please let me know what's the problem? Thank you
jellystat-db:
image: postgres:15.2
shm_size: '1gb'
container_name: jellystat-db
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: "5"
max-size: "10m"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mypassword
volumes:
- ./jellystat/jellystat-db/postgres-data:/var/lib/postgresql/data
networks:
servarrnetwork:
ipv4_address: 172.39.0.19
jellystat:
image: cyfershepard/jellystat:latest
container_name: jellystat
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: "5"
max-size: "10m"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mypassword
POSTGRES_IP: jellystat-db
POSTGRES_PORT: 5432
JWT_SECRET: "my-secret-jwt-key"
TZ: Europe/Lisbon
volumes:
- ./jellystat/jellystat-backup-data:/app/backend/backup-data
ports:
- "3001:3000"
depends_on:
- jellystat-db
networks:
servarrnetwork:
ipv4_address: 172.39.0.20