Joplin View Web: Can't access service

Operating system

Linux

Joplin version

3.3.13

Sync target

Nextcloud

What issue do you have?

I kiked of the joplin view web project on my docker server.
I'm running docker on an Ubuntu webserver. NPM is already running on this server as a docker service and is used to proxy my services.
My Joplin used my Nextcloud instance (on another webserver) as a sync target (webdav).
All docker services run in a dedicated NPM network, the same docker network with NPM.

I used this one, but can not access it neither on https://wiki.domain.com' nor on http://192.168.178.100.

x-common-variables: &common-variables
ORIGINS: "'http://localhost', 'https://wiki.domain.com', 'http://192.168.178.100'"
JOPLIN_LOGIN_REQUIRED: False

services:
django-joplin-vieweb:
image: gri38/django-joplin-vieweb:latest
container_name: djangojoplinvieweb
depends_on:
- joplin-terminal-xapi
environment:
<<: *common-variables
restart: unless-stopped
ports:
- 8000:8000
volumes:
- /docker/joplin:/root/.config/joplin:ro
- /docker/joplin-vieweb:/root/.config/joplin-vieweb
networks:
NPM:
ipv4_address: 10.100.0.150

joplin-terminal-xapi:
image: gri38/joplin-terminal-xapi:latest
container_name: joplinterminalxapi
restart: unless-stopped
volumes:
- /docker/joplin:/root/.config/joplin
networks:
NPM:
ipv4_address: 10.100.0.151

networks:
NPM:
external: true
name: NPM
ipam:
config:
- subnet: 10.100.0.0/24
- gateway: 10.100.0.1

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.