version: "3.8" services: joplin: image: joplin/server:latest container_name: joplin depends_on: - joplin-postgres restart: unless-stopped environment: - APP_PORT=22300 - APP_BASE_URL=https://joplin.zinomedia.de - DB_CLIENT=pg - POSTGRES_PASSWORD=7UN@nN9cKdz6NFN& - POSTGRES_DATABASE=joplin - POSTGRES_USER=joplin - POSTGRES_PORT=5432 - POSTGRES_HOST=joplin-postgres - MAX_TIME_DRIFT=0 volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro networks: - web joplin-postgres: image: postgres:16 container_name: joplin-postgres volumes: - ./volumes/postgres:/var/lib/postgresql/data restart: unless-stopped environment: - POSTGRES_PASSWORD=7UN@nN9cKdz6NFN& - POSTGRES_USER=joplin - POSTGRES_DB=joplin networks: - web networks: web: external: true name: web