diff --git a/README.md b/README.md index dffa8d25..5c67b484 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ This is the official repository for the Tipi App Store. It contains all the apps - [Codex.Docs](https://github.com/codex-team/codex.docst) - Free Docs app powered by Editor.js ecosystem. - [DailyTXT](https://github.com/PhiTux/DailyTxT) - Encrypted Diary Web-App - [Deluge](https://github.com/linuxserver/docker-deluge) - Deluge is a lightweight, Free Software, cross-platform BitTorrent client +- [Deemix](https://gitlab.com/Bockiii/deemix-docker) - deemix is a barebone deezer downloader library built from the ashes of Deezloader Remix. - [DokuWiki](https://github.com/dokuwiki/dokuwiki) - DokuWiki is a simple to use and highly versatile Open Source wiki software - [Duplicati](https://github.com/linuxserver/docker-duplicati) - Store securely encrypted backups in the cloud! - [Emulatorjs](https://github.com/EmulatorJS/EmulatorJS) - Self-hosted Javascript emulation for various system. diff --git a/apps/deemix/config.json b/apps/deemix/config.json new file mode 100644 index 00000000..23070b1e --- /dev/null +++ b/apps/deemix/config.json @@ -0,0 +1,17 @@ +{ + "$schema": "../schema.json", + "name": "Deemix", + "port": 8171, + "available": true, + "exposable": true, + "id": "deemix", + "tipi_version": 1, + "version": "latest", + "categories": ["media", "utilities"], + "description": "deemix is a barebone deezer downloader library built from the ashes of Deezloader Remix.", + "short_desc": "deemix is a barebone deezer downloader library built from the ashes of Deezloader Remix.", + "author": "Bockiii", + "source": "https://gitlab.com/Bockiii/deemix-docker", + "website": "https://deemix.app/", + "form_fields": [] +} \ No newline at end of file diff --git a/apps/deemix/docker-compose.yml b/apps/deemix/docker-compose.yml new file mode 100644 index 00000000..8224e785 --- /dev/null +++ b/apps/deemix/docker-compose.yml @@ -0,0 +1,27 @@ +version: "3" + +services: + deemix: + container_name: deemix + image: registry.gitlab.com/bockiii/deemix-docker + ports: + - ${APP_PORT}:6595 + volumes: + - ${APP_DATA_DIR}/data/deemix-config:/config + - ${ROOT_FOLDER_HOST}/media:/media + - ${ROOT_FOLDER_HOST}/media/data/torrents/deemix:/downloads + - ${ROOT_FOLDER_HOST}/media/data/music:/music + environment: + - PUID=1000 + - PGID=1000 + - UMASK_SET=022 + restart: unless-stopped + networks: + - tipi_main_network + labels: + traefik.enable: ${APP_EXPOSED} + traefik.http.routers.deemix.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.deemix.entrypoints: websecure + traefik.http.routers.deemix.service: deemix + traefik.http.routers.deemix.tls.certresolver: myresolver + traefik.http.services.deemix.loadbalancer.server.port: 6595 \ No newline at end of file diff --git a/apps/deemix/metadata/description.md b/apps/deemix/metadata/description.md new file mode 100644 index 00000000..39522c37 --- /dev/null +++ b/apps/deemix/metadata/description.md @@ -0,0 +1,10 @@ +# Folder Info + +| Root Folder | Container Folder | +|---------------------------------------------|------------------| +| /runtipi/app-data/deemix/data/deemix-config | /config | +| /runtipi/media | /media | +| /runtipi/media/data/torrents/deemix | /downloads | +| /runtipi/media/data/music | /music | + +deemix is a library that lets you download millions of songs, soundtracks, albums in high-quality mp3 and FLAC. Here you can find discussions about the apps that use the deemix library. Deemix is meant to replace Deezloader Remix. diff --git a/apps/deemix/metadata/logo.jpg b/apps/deemix/metadata/logo.jpg new file mode 100644 index 00000000..9d745d96 Binary files /dev/null and b/apps/deemix/metadata/logo.jpg differ