I’m trying to deplot the new Pairdrop container but running in to some deployment errors and i have no clue were to look for to fix it.
Below is the error i’m getting.
failed to deploy a stack: pairdrop Pulling 6f0fdad1ce92 Already exists c61fe2056171 Already exists 604d992cfe46 Already exists e4bccb8e029e Already exists 2bf0bbf9b988 Pulling fs layer aa59716395d4 Pulling fs layer aa59716395d4 Downloading [==================================================>] 913B/913B aa59716395d4 Verifying Checksum aa59716395d4 Download complete 2bf0bbf9b988 Downloading [> ] 327.7kB/31.44MB 2bf0bbf9b988 Downloading [=====> ] 3.604MB/31.44MB 2bf0bbf9b988 Downloading [==============> ] 8.847MB/31.44MB 2bf0bbf9b988 Downloading [======================> ] 14.42MB/31.44MB 2bf0bbf9b988 Downloading [==============================> ] 19.33MB/31.44MB 2bf0bbf9b988 Downloading [======================================> ] 23.92MB/31.44MB 2bf0bbf9b988 Downloading [=============================================> ] 28.51MB/31.44MB 2bf0bbf9b988 Verifying Checksum 2bf0bbf9b988 Download complete 2bf0bbf9b988 Extracting [> ] 327.7kB/31.44MB 2bf0bbf9b988 Extracting [=> ] 983kB/31.44MB 2bf0bbf9b988 Extracting [==========> ] 6.554MB/31.44MB 2bf0bbf9b988 Extracting [====================> ] 13.11MB/31.44MB 2bf0bbf9b988 Extracting [==========================> ] 16.38MB/31.44MB 2bf0bbf9b988 Extracting [===============================> ] 19.66MB/31.44MB 2bf0bbf9b988 Extracting [===================================> ] 22.61MB/31.44MB 2bf0bbf9b988 Extracting [=========================================> ] 25.89MB/31.44MB 2bf0bbf9b988 Extracting [=============================================> ] 28.84MB/31.44MB 2bf0bbf9b988 Extracting [================================================> ] 30.47MB/31.44MB 2bf0bbf9b988 Extracting [==================================================>] 31.44MB/31.44MB failed to register layer: ApplyLayer exit status 1 stdout: stderr: lchown /app/pairdrop/node_modules/content-type/HISTORY.md: invalid argument
And this is moy docker compose file:
version: "2.1"
services:
pairdrop:
image: lscr.io/linuxserver/pairdrop:latest
container_name: pairdrop
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
#- RATE_LIMIT=false #optional
#- WS_FALLBACK=false #optional
#- RTC_CONFIG= #optional
ports:
- 3000:3000
restart: unless-stopped
networks:
ipvlan_custom:
ipv4_address: 10.0.0.179
networks:
ipvlan_custom:
name: ipvlan_custom
ipam:
config:
- subnet: 10.0.0.0/24
gateway: 10.0.0.1
What am i missing?