mirror
Go to file
2023-09-01 21:08:55 +08:00
.github fix: drop linux/arm/v7 2023-08-30 10:34:10 +08:00
.husky docs: add MIT license 2023-08-28 00:13:00 +08:00
.vscode feat: truncate proxy node name 2023-08-30 23:36:25 +08:00
docs docs: update preview image 2023-08-30 00:26:57 +08:00
src feat: render in two line 2023-09-01 21:08:55 +08:00
.commitlintrc.yml docs: add MIT license 2023-08-28 00:13:00 +08:00
.dockerignore feat: publish docker image 2023-08-30 00:40:47 +08:00
.gitignore chore: initial commit 2023-08-27 15:34:12 +08:00
.lintstagedrc.yml docs: add MIT license 2023-08-28 00:13:00 +08:00
.prettierrc chore: add prettier-plugin-organize-imports 2023-08-28 22:36:38 +08:00
Caddyfile feat: publish docker image 2023-08-30 00:40:47 +08:00
CHANGELOG.md chore(main): release 1.36.1 (#77) 2023-09-01 18:40:07 +08:00
Dockerfile build(docker): declare EXPOSE 2023-09-01 17:46:55 +08:00
index.html docs: add MIT license 2023-08-28 00:13:00 +08:00
LICENSE docs: add MIT license 2023-08-28 00:13:00 +08:00
package.json chore(main): release 1.36.1 (#77) 2023-09-01 18:40:07 +08:00
pnpm-lock.yaml feat: render in two line 2023-09-01 21:08:55 +08:00
postcss.config.js chore: initial commit 2023-08-27 15:34:12 +08:00
README.md docs: add descriptions for docker 2023-09-01 17:45:40 +08:00
tailwind.config.ts chore: initial commit 2023-08-27 15:34:12 +08:00
tsconfig.json chore: initial commit 2023-08-27 15:34:12 +08:00
vite.config.ts feat: add PWA support 2023-09-01 17:08:00 +08:00

metacubexd

CF pages: https://metacubexd.pages.dev

GH pages: https://metacubex.github.io/metacubexd

Clash-Meta Dashboard

preview

Usage

Build locally

Install npm dependencies

pnpm install

Build artifacts

pnpm build

Serve static files

pnpm preview

Run inside Docker

docker cli

docker run -d --restart always -p 80:80 --name metacubexd ghcr.io/metacubex/metacubexd

docker-compose.yml

version: '3'

services:
  metacubexd:
    container_name: metacubexd
    image: ghcr.io/metacubex/metacubexd
    restart: always
    ports:
      - 80:80