Operating system
Linux
Joplin version
2.14.1
What issue do you have?
joplin-server is working about 30 minutes after installation, in the meantime we get a bad gateway error. after an update of the docker-compsoe.yml again 30 minutes of waiting.
docker-compose-yml:
version: '3'
services:
db:
image: postgres:15
volumes:
- /storage/joplindb:/var/lib/postgresql/data
ports:
- "5432:5432"
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=xxxx
- POSTGRES_USER=joplin
- POSTGRES_DB=joplin
app:
image: joplin/server:latest
depends_on:
- db
ports:
- "8081:8081"
restart: unless-stopped
environment:
- APP_PORT=8081
- APP_BASE_URL=myurl
- DB_CLIENT=pg
- POSTGRES_PASSWORD=xxxx
- POSTGRES_DATABASE=joplin
- POSTGRES_USER=joplin
- POSTGRES_PORT=5432
- POSTGRES_HOST=db
- MAILER_ENABLED=1
- MAILER_HOST=192.168.10.1
- MAILER_PORT=25
- MAILER_SECURITY=none
- MAILER_NOREPLY_NAME=Joplin
- MAILER_NOREPLY_EMAIL=no-reply@example.com
volumes:
joplindb: null
Any idea what this yould be ?