diff --git a/apps/databag/config.json b/apps/databag/config.json new file mode 100644 index 00000000..5009df3d --- /dev/null +++ b/apps/databag/config.json @@ -0,0 +1,18 @@ +{ + "$schema": "../schema.json", + "name": "Databag", + "available": true, + "exposable": true, + "port": 7000, + "id": "databag", + "tipi_version": 2, + "version": "latest", + "categories": [ + "utilities" + ], + "description": "Databag is a federated chat app for self-hosting that focuses on user privacy and security; the service includes clients for iOS, Android, and browser.", + "short_desc": "Messenger for the Decentralized Web", + "author": "balzack", + "source": "https://github.com/balzack/databag", + "form_fields": [] +} diff --git a/apps/databag/docker-compose.yml b/apps/databag/docker-compose.yml new file mode 100644 index 00000000..8940c505 --- /dev/null +++ b/apps/databag/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3.9" +services: + databag: + container_name: databag + image: balzack/databag:latest + ports: + - ${APP_PORT}:7000 + volumes: + - ${APP_DATA_DIR}/data/databag:/var/lib/databag diff --git a/apps/databag/metadata/description.md b/apps/databag/metadata/description.md new file mode 100644 index 00000000..98cb6c0b --- /dev/null +++ b/apps/databag/metadata/description.md @@ -0,0 +1,2 @@ +# Databag +Databag is a federated chat app for self-hosting that focuses on user privacy and security; the service includes clients for iOS, Android, and browser. diff --git a/apps/databag/metadata/icon.png b/apps/databag/metadata/icon.png new file mode 100644 index 00000000..d77e859f Binary files /dev/null and b/apps/databag/metadata/icon.png differ