Operating system
Linux
Joplin version
3.4.3
Sync target
Joplin Server
Editor
Markdown Editor
What issue do you have?
Hi there
Getting "ENOENT: no such file or directory, open './saml/joplin-sp.xml' " after pulling Joplin Server with SAML.
Compse:
services:
app:
image: joplin/server:latest
depends_on:
- db
ports:
- "22300:22300"
restart: unless-stopped
#env_file: .env
volumes:
- ./saml:/saml:ro
environment:
- APP_PORT=22300
- APP_BASE_URL=https://joplin.example.com
- DB_CLIENT=pg
- POSTGRES_PASSWORD=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
- POSTGRES_DATABASE=joplin
- POSTGRES_USER=xxxxxxxxxxxxxxxxxxx
- POSTGRES_PORT=5432
- POSTGRES_HOST=db
- SAML_ENABLED=true
- SAML_IDP_CONFIG_FILE=./saml/joplin-idp.xml
- SAML_SP_CONFIG_FILE=./saml/joplin-sp.xml
- API_BASE_URL=https://joplin.example.com
- DELETE_EXPIRED_SESSIONS_SCHEDULE=""
# Optional: Disable local authentication to require SAML login
- LOCAL_AUTH_ENABLED=true
db:
image: postgres:16
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
- POSTGRES_USER=xxxxxxxxxxxxxxxxxxx
- POSTGRES_DB=joplin
Ideas?