Thanks for the reply!
I installed the container, and am having an issue in that I get "invalid origin: hostname:22300" when attempting to access the site.
Sounds like a similar issue to this issue in the forum: new-install-invalid-origin-error/17891
This is the compose file. BTW I have tried several different APP_BASE_URL formats (host name host ip etc) all with similar results.
Thanks again
version: 2
services:
db:
image: postgres:latest
container_name: postgres
volumes:
- /volume1/docker/joplin:/var/lib/postgresql/data
ports:
- "5435:5432"
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=joplin
- POSTGRES_USER=joplin
- POSTGRES_DB=joplin
app:
image: joplin/server:latest
depends_on:
- db
ports:
- "22300:22300"
restart: unless-stopped
environment:
- APP_BASE_URL=http://192.168.2.xxx/joplin
- DB_CLIENT=pg
- POSTGRES_PASSWORD=joplin
- POSTGRES_DATABASE=joplin
- POSTGRES_USER=joplin
- POSTGRES_PORT=5432
- POSTGRES_HOST=db