I'm having a problem getting this container up and running, this is the error I'm getting
/tagem-server: error while loading shared libraries: libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
Here is the relevant snippet of my compose file.
version: "3.3"
networks:
proxy:
external:
name: proxy
tagem:
driver: bridge
## MariaDB - MySQL Database
tagemdb:
image: linuxserver/mariadb:latest
container_name: tagemdb
restart: always
networks:
- tagem
security_opt:
- no-new-privileges:true
volumes:
- $CONFIG_DIR/tagem/db:/config
- /etc/localtime:/etc/localtime:ro
environment:
PUID: $PUID
PGID: $PGID
MYSQL_ROOT_PASSWORD: $ROOT_PASS
MYSQL_DATABASE: db
MYSQL_USER: tagem
MYSQL_PASSWORD: $USER_PASS
MYSQL_ROOT_HOST: "%"
# Tagem - A single page application, with associated command-line utilities, for the rapid categorising and accessing of files, based on assignable attributes such as (heirarchical) tags, named variables, file sizes, hashes, and audio duration.
# Create all databases and files first
tagem:
image: notcompsky/tagem:latest
container_name: tagem
restart: always
networks:
- proxy
- tagem
volumes:
- $CONFIG_DIR/tagem/tagem-auth.cfg:/tagem-auth.cfg
- /etc/localtime:/etc/localtime:ro
security_opt:
- no-new-privileges:true
ports:
- "$TAGEM_PORT:80"
depends_on:
- tagemdb
labels:
- "traefik.enable=true"
## HTTP Routers
- "traefik.http.routers.tagem-rtr.entrypoints=https"
- "traefik.http.routers.tagem-rtr.rule=Host(`tagem.$DOMAIN_NAME`)"
- "traefik.http.routers.tagem-rtr.tls=true"
## Middlewares
- "traefik.http.routers.tagem-rtr.middlewares=chain-oauth@file,add-tagem" # Google OAuth 2.0
## HTTP Services
- "traefik.http.routers.tagem-rtr.service=tagem-svc"
- "traefik.http.services.tagem-svc.loadbalancer.server.port=80"
I'm having a problem getting this container up and running, this is the error I'm getting
/tagem-server: error while loading shared libraries: libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directoryHere is the relevant snippet of my compose file.