mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:添加medama到列表
This commit is contained in:
parent
8af0478b42
commit
406d1b0d84
2
apps/medama/0.4.4/.env.sample
Normal file
2
apps/medama/0.4.4/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="medama"
|
||||||
|
PANEL_APP_PORT_HTTP=40282
|
10
apps/medama/0.4.4/data.yml
Normal file
10
apps/medama/0.4.4/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40282"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
21
apps/medama/0.4.4/docker-compose.yml
Normal file
21
apps/medama/0.4.4/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
services:
|
||||||
|
medama:
|
||||||
|
image: "ghcr.io/medama-io/medama:v0.4.4"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||||
|
volumes:
|
||||||
|
- medama-data:/app/data
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
medama-data:
|
||||||
|
name: medama-data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
3
apps/medama/0.4.4/scripts/uninstall.sh
Normal file
3
apps/medama/0.4.4/scripts/uninstall.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
docker-compose down --volumes
|
27
apps/medama/README.md
Normal file
27
apps/medama/README.md
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<p align="center">
|
||||||
|
<picture>
|
||||||
|
<source media="(prefers-color-scheme: dark)" srcset="./.github/images/banner-dark.svg">
|
||||||
|
<source media="(prefers-color-scheme: light)" srcset="./.github/images/banner-light.svg">
|
||||||
|
<img alt="Medama: Cookie-free privacy-focused website analytics." src="./.github/images/banner-light.svg">
|
||||||
|
</picture>
|
||||||
|
<br>
|
||||||
|
<a href="https://oss.medama.io/introduction">Website</a> |
|
||||||
|
<a href="https://oss.medama.io/deployment/installation">Installation</a> |
|
||||||
|
<a href="https://demo.medama.io">Demo</a> |
|
||||||
|
<a href="https://medama.io/discord">Discord</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
Medama Analytics 是一个开源项目,致力于提供可自托管的无 Cookie 网站分析。它拥有不到 1KB 的轻量级追踪器,旨在提供有用的分析数据,同时优先考虑用户隐私。
|
||||||
|
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
- 账户密码
|
||||||
|
```
|
||||||
|
username: admin
|
||||||
|
password: CHANGE_ME_ON_FIRST_LOGIN
|
||||||
|
```
|
||||||
|
|
||||||
|
- 需要域名反向代理并开启`https`访问才能登录。
|
19
apps/medama/data.yml
Normal file
19
apps/medama/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Medama
|
||||||
|
tags:
|
||||||
|
- 实用工具
|
||||||
|
title: 自托管、注重隐私的网站分析
|
||||||
|
description: 自托管、注重隐私的网站分析
|
||||||
|
additionalProperties:
|
||||||
|
key: medama
|
||||||
|
name: Medama
|
||||||
|
tags:
|
||||||
|
- Tool
|
||||||
|
shortDescZh: 自托管、注重隐私的网站分析
|
||||||
|
shortDescEn: Self-hostable, privacy-focused website analytics
|
||||||
|
type: tool
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 1
|
||||||
|
recommend: 0
|
||||||
|
website: https://oss.medama.io
|
||||||
|
github: https://github.com/medama-io/medama
|
||||||
|
document: https://oss.medama.io
|
2
apps/medama/latest/.env.sample
Normal file
2
apps/medama/latest/.env.sample
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
CONTAINER_NAME="medama"
|
||||||
|
PANEL_APP_PORT_HTTP=40282
|
10
apps/medama/latest/data.yml
Normal file
10
apps/medama/latest/data.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40282"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
21
apps/medama/latest/docker-compose.yml
Normal file
21
apps/medama/latest/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
services:
|
||||||
|
medama:
|
||||||
|
image: "ghcr.io/medama-io/medama:latest"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||||
|
volumes:
|
||||||
|
- medama-data:/app/data
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
medama-data:
|
||||||
|
name: medama-data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
3
apps/medama/latest/scripts/uninstall.sh
Normal file
3
apps/medama/latest/scripts/uninstall.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
docker-compose down --volumes
|
BIN
apps/medama/logo.png
Normal file
BIN
apps/medama/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Loading…
Reference in New Issue
Block a user