From a60acf4cf056b437076192d09ec0eb7b71fcdc60 Mon Sep 17 00:00:00 2001 From: borgal Date: Wed, 31 May 2023 21:51:21 +0200 Subject: [PATCH] Joplin entfernt --- joplin/.env.sample | 3 --- joplin/docker-compose.yml | 49 --------------------------------------- 2 files changed, 52 deletions(-) delete mode 100644 joplin/.env.sample delete mode 100644 joplin/docker-compose.yml diff --git a/joplin/.env.sample b/joplin/.env.sample deleted file mode 100644 index 088059e..0000000 --- a/joplin/.env.sample +++ /dev/null @@ -1,3 +0,0 @@ -POSTGRES_PASSWORD=ChangeMe -POSTGRES_USER=BENUTZER -APP_BASE_URL=https://joplin.your-domain.de diff --git a/joplin/docker-compose.yml b/joplin/docker-compose.yml deleted file mode 100644 index a19563d..0000000 --- a/joplin/docker-compose.yml +++ /dev/null @@ -1,49 +0,0 @@ -# This is a sample docker-compose file that can be used to run Joplin Server -# along with a PostgreSQL server. -# -# Update the following fields in the stanza below: -# -# POSTGRES_USER -# POSTGRES_PASSWORD -# APP_BASE_URL -# -# APP_BASE_URL: This is the base public URL where the service will be running. -# - If Joplin Server needs to be accessible over the internet, configure APP_BASE_URL as follows: https://example.com/joplin. -# - If Joplin Server does not need to be accessible over the internet, set the the APP_BASE_URL to your server's hostname. -# For Example: http://[hostname]:22300. The base URL can include the port. -# APP_PORT: The local port on which the Docker container will listen. -# - This would typically be mapped to port to 443 (TLS) with a reverse proxy. -# - If Joplin Server does not need to be accessible over the internet, the port can be mapped to 22300. - -version: '3' - -services: - db: - image: postgres:13 - container_name: joplin_db - volumes: - - ./data/postgres:/var/lib/postgresql/data - ports: - - "5432:5432" - restart: unless-stopped - environment: - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_DB=joplin - app: - image: joplin/server:latest - container_name: joplin_app - depends_on: - - db - ports: - - "22300:22300" - restart: unless-stopped - environment: - - APP_PORT=22300 - - APP_BASE_URL=${APP_BASE_URL} - - DB_CLIENT=pg - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - - POSTGRES_DATABASE=joplin - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_PORT=5432 - - POSTGRES_HOST=db