mirror
Go to file
github-actions[bot] d873ccbf69
chore(main): release 1.45.0 (#92)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2023-09-02 13:59:21 +08:00
.github feat: publish gh-pages to a custom domain 2023-09-02 01:17:30 +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 feat(logs): render logs in table 2023-09-01 22:07:11 +08:00
src refactor(config): split config page components 2023-09-02 13:57:58 +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.45.0 (#92) 2023-09-02 13:59:21 +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.45.0 (#92) 2023-09-02 13:59:21 +08:00
pnpm-lock.yaml build(deps): bump @types/node from 20.5.7 to 20.5.8 (#86) 2023-09-02 11:14:59 +08:00
postcss.config.js chore: initial commit 2023-08-27 15:34:12 +08:00
README.md docs: update domains 2023-09-02 01:23:42 +08:00
tailwind.config.ts fix: some themes is overriding global font-family 2023-09-02 02:22:30 +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

Clash-Meta Dashboard

GH Pages Custom Domain: http://d.metacubex.one

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

Cloudflare Pages: https://metacubexd.pages.dev

preview

Usage

Build locally

Install npm dependencies

pnpm install

Build artifacts

pnpm build

Serve static files

pnpm serve

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

  # optional
  meta:
    container_name: meta
    image: docker.io/metacubex/clash-meta:Alpha
    restart: always
    network_mode: host
    cap_add:
      - NET_ADMIN
    volumes:
      - ./config.yaml:/root/.config/clash