
Deploy wakapi on Your Own Server
Wakapi is an open-source tool that helps you keep track of the time you have spent coding on different projects in different programming languages and more.
想更快部署 wakapi到服务器?试试 Senate,一条命令完成部署,自动配置 HTTPS 和监控。
什么是 wakapi?
Wakapi is an open-source tool that helps you keep track of the time you have spent coding on different projects in different programming languages and more. Ideal for statistics freaks and anyone else. This app will install a default postgres instance with persistant data. You can choose the version yourself. The deployment was tested with postgres 16.x. For Updating just Deploy latest image from https://github.com/muety/wakapi/pkgs/container/wakapi using the Deploy via ImageName section in your Senate wakapi container For more details about wakapi, see: https://wakapi.dev Enter your configuration parameters and click on next. It will take about a minute for the process to finish.
自托管 wakapi
按照以下步骤在您的服务器上部署。
安装 Docker
如果服务器上已安装 Docker,可跳过此步骤。
curl -fsSL https://get.docker.com | sh
配置
自定义以下设置。大多数情况下使用默认值即可。
General
部署
复制配置并在服务器上运行。
services:
wakapi:
image: ghcr.io/muety/wakapi:2.9.3
environment:
ENVIRONMENT: production
WAKAPI_ALLOW_SIGNUP: "true"
WAKAPI_DB_HOST: wakapi-db
WAKAPI_DB_NAME: wakapi
WAKAPI_DB_PASSWORD: 5b8f0243d278a2e3
WAKAPI_DB_PORT: "5432"
WAKAPI_DB_TYPE: postgres
WAKAPI_DB_USER: wakapi
WAKAPI_PASSWORD_SALT: 015fbab4b5dbe566e5791cf4cef43577
WAKAPI_PUBLIC_URL: wakapi.your-domain.com
WAKAPI_SUPPORT_CONTACT: hostmaster@wakapi.dev
volumes:
- wakapi-data:/data
depends_on:
- wakapi-db
wakapi-db:
image: postgres:16.1-alpine
environment:
POSTGRES_DB: wakapi
POSTGRES_INITDB_ARGS: ""
POSTGRES_PASSWORD: 5b8f0243d278a2e3
POSTGRES_USER: wakapi
volumes:
- wakapi-db-data:/var/lib/postgresql/data
volumes:
wakapi-data: {}
wakapi-db-data: {}
然后运行:
docker compose up -d
访问
启动后,访问您的应用: http://localhost:3000
为什么要自托管 wakapi?
完全数据所有权
数据保存在您的服务器上,无第三方访问。
无月费
只需支付服务器费用,无按席位或用量收费。
完全控制
按您的需求自定义、备份和扩展。
隐私与合规
满足 GDPR、HIPAA 或内部安全要求。
技术细节
Docker 镜像
ghcr.io/muety/wakapi:${wakapi_version}想更快部署?
尝试 Senate!Senate 帮您处理 Docker、HTTPS、更新和监控。一条命令部署 300+ 应用。
在任意 Linux 服务器上安装:
sh -c "$(curl -sSL https://get.senate.sh)"