diff --git a/server/config/drawio/.env b/server/config/drawio/.env deleted file mode 100644 index ae26944..0000000 --- a/server/config/drawio/.env +++ /dev/null @@ -1 +0,0 @@ -DRAWIO_BASE_URL=https://draw.jafner.net diff --git a/server/config/drawio/docker-compose.yml b/server/config/drawio/docker-compose.yml deleted file mode 100644 index e692377..0000000 --- a/server/config/drawio/docker-compose.yml +++ /dev/null @@ -1,74 +0,0 @@ -version: '3' -services: - plantuml-server: - image: jgraph/plantuml-server - container_name: drawio_plantuml-server - restart: unless-stopped - expose: - - "8080" - networks: - - drawionet - volumes: - - fonts_volume:/usr/share/fonts/drawio - image-export: - image: jgraph/export-server - container_name: drawio_export-server - restart: unless-stopped - expose: - - "8000" - networks: - - drawionet - volumes: - - fonts_volume:/usr/share/fonts/drawio - environment: - - DRAWIO_SERVER_URL=${DRAWIO_BASE_URL} - drawio: - image: jgraph/drawio - container_name: drawio_drawio - links: - - plantuml-server:plantuml-server - - image-export:image-export - depends_on: - - plantuml-server - - image-export - networks: - - drawionet - - web - environment: - - DRAWIO_SELF_CONTAINED=1 - - PLANTUML_URL=http://plantuml-server:8080/ - - EXPORT_URL=http://image-export:8000/ - - DRAWIO_BASE_URL=${DRAWIO_BASE_URL} - - DRAWIO_CSP_HEADER=${DRAWIO_CSP_HEADER} - - DRAWIO_VIEWER_URL=${DRAWIO_VIEWER_URL} - - DRAWIO_CONFIG=${DRAWIO_CONFIG} - - DRAWIO_GOOGLE_CLIENT_ID=${DRAWIO_GOOGLE_CLIENT_ID} - - DRAWIO_GOOGLE_APP_ID=${DRAWIO_GOOGLE_APP_ID} - - DRAWIO_GOOGLE_CLIENT_SECRET=${DRAWIO_GOOGLE_CLIENT_SECRET} - - DRAWIO_GOOGLE_VIEWER_CLIENT_ID=${DRAWIO_GOOGLE_VIEWER_CLIENT_ID} - - DRAWIO_GOOGLE_VIEWER_APP_ID=${DRAWIO_GOOGLE_VIEWER_APP_ID} - - DRAWIO_GOOGLE_VIEWER_CLIENT_SECRET=${DRAWIO_GOOGLE_VIEWER_CLIENT_SECRET} - - DRAWIO_MSGRAPH_CLIENT_ID=${DRAWIO_MSGRAPH_CLIENT_ID} - - DRAWIO_MSGRAPH_CLIENT_SECRET=${DRAWIO_MSGRAPH_CLIENT_SECRET} - - DRAWIO_GITLAB_ID=${DRAWIO_GITLAB_ID} - - DRAWIO_GITLAB_URL=${DRAWIO_GITLAB_URL} - - DRAWIO_CLOUD_CONVERT_APIKEY=${DRAWIO_CLOUD_CONVERT_APIKEY} - - DRAWIO_CACHE_DOMAIN=${DRAWIO_CACHE_DOMAIN} - - DRAWIO_MEMCACHED_ENDPOINT=${DRAWIO_MEMCACHED_ENDPOINT} - - DRAWIO_PUSHER_MODE=2 - - DRAWIO_IOT_ENDPOINT=${DRAWIO_IOT_ENDPOINT} - - DRAWIO_IOT_CERT_PEM=${DRAWIO_IOT_CERT_PEM} - - DRAWIO_IOT_PRIVATE_KEY=${DRAWIO_IOT_PRIVATE_KEY} - - DRAWIO_IOT_ROOT_CA=${DRAWIO_IOT_ROOT_CA} - - DRAWIO_MXPUSHER_ENDPOINT=${DRAWIO_MXPUSHER_ENDPOINT} - labels: - - traefik.http.routers.drawio.rule=Host(`draw.jafner.net`) - - traefik.http.routers.drawio.tls.certresolver=lets-encrypt - -networks: - drawionet: - web: - external: true - -volumes: - fonts_volume: diff --git a/server/config/joplin/.env b/server/config/joplin/.env deleted file mode 100644 index 17d92d3..0000000 --- a/server/config/joplin/.env +++ /dev/null @@ -1,12 +0,0 @@ -DOCKER_DATA=/home/joey/data/joplin - -DB_CLIENT=pg -POSTGRES_PASSWORD=postgres -POSTGRES_DATABASE=joplin -POSTGRES_DB=joplin -POSTGRES_USER=postgres -POSTGRES_PORT=5432 -POSTGRES_HOST=joplin_db - -APP_BASE_URL=https://joplin.jafner.net -APP_PORT=22300 diff --git a/server/config/joplin/docker-compose.yml b/server/config/joplin/docker-compose.yml deleted file mode 100644 index 493195d..0000000 --- a/server/config/joplin/docker-compose.yml +++ /dev/null @@ -1,34 +0,0 @@ -version: '3' -services: - joplin: - image: joplin/server:2.6-beta - container_name: joplin - restart: unless-stopped - env_file: - - .env - depends_on: - - joplin_db - networks: - - web - - joplin - labels: - - traefik.http.routers.joplin.rule=Host(`joplin.jafner.net`) - - traefik.http.routers.joplin.tls.certresolver=lets-encrypt - - traefik.http.middlewares.joplin.headers.customrequestheaders.X-Forwarded-Proto = http - - traefik.http.services.joplin.loadbalancer.server.port=22300 - - traefik.http.services.joplin.loadbalancer.passhostheader=true - joplin_db: - image: postgres:13.1 - container_name: joplin_db - restart: unless-stopped - env_file: - - .env - volumes: - - ${DOCKER_DATA}/db:/var/lib/postresql/data - networks: - - joplin - -networks: - joplin: - web: - external: true diff --git a/server/config/joplin/docker-compose.yml.save b/server/config/joplin/docker-compose.yml.save deleted file mode 100644 index db45082..0000000 --- a/server/config/joplin/docker-compose.yml.save +++ /dev/null @@ -1,31 +0,0 @@ -version: '3' -services: - joplin: - image: joplin/server:2.6-beta - container_name: joplin - restart: unless-stopped - env - depends_on: - - joplin_db - networks: - - web - - joplin - labels: - - traefik.http.routers.joplin.rule=Host(`joplin.jafner.net`) - - traefik.http.routers.joplin.tls.certresolver=lets-encrypt - - traefik.http.middlewares.joplin.headers.customrequestheaders.X-Forwarded-Proto = http - - traefik.http.services.joplin.loadbalancer.server.port=22300 - - traefik.http.services.joplin.loadbalancer.passhostheader=true - joplin_db: - image: postgres:13.1 - container_name: joplin_db - restart: unless-stopped - volumes: - - ${DOCKER_DATA}/db:/var/lib/postresql/data - networks: - - joplin - -networks: - joplin: - web: - external: true diff --git a/server/config/olivetin/config/config.yaml b/server/config/olivetin/config/config.yaml deleted file mode 100644 index 959dcdd..0000000 --- a/server/config/olivetin/config/config.yaml +++ /dev/null @@ -1,3 +0,0 @@ -actions: - - title: "Restart BMCP" - shell: shell docker restart bmcp diff --git a/server/config/olivetin/docker-compose.yml b/server/config/olivetin/docker-compose.yml deleted file mode 100644 index 9338c32..0000000 --- a/server/config/olivetin/docker-compose.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: "3.3" -services: - olivetin: - image: jamesread/olivetin - container_name: olivetin - volumes: - - ./config:/config - - /var/run/docker.sock:/var/run/docker.sock - restart: unless-stopped - networks: - - web - labels: - - traefik.http.routers.olivetin.rule=Host(`olive.jafner.net`) - - traefik.http.routers.olivetin.tls.certresolver=lets-encrypt - - traefik.http.routers.olivetin.middlewares=lan-only@file - - traefik.http.services.olivetin.loadbalancer.server.port=1337 - - -networks: - web: - external: true