mirror
Go to file
2023-09-03 20:31:13 +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(proxies): sortProxiesByOrderingType 2023-09-03 05:40:49 +08:00
docs docs: update preview image 2023-09-03 18:38:53 +08:00
src refactor: skipLibCheck 2023-09-03 20:31:13 +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
.eslintrc.yml chore: add eslint to enforce code quality 2023-09-03 15:30:56 +08:00
.gitignore refactor: skipLibCheck 2023-09-03 20:31:13 +08:00
.lintstagedrc.yml chore: add eslint to enforce code quality 2023-09-03 15:30:56 +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.59.0 (#115) 2023-09-03 18:18:02 +08:00
Dockerfile build(docker): declare EXPOSE 2023-09-01 17:46:55 +08:00
index.html refactor: rename src/index.tsx to src/main.tsx 2023-09-03 03:37:45 +08:00
LICENSE docs: add MIT license 2023-08-28 00:13:00 +08:00
package.json chore(main): release 1.59.0 (#115) 2023-09-03 18:18:02 +08:00
pnpm-lock.yaml feat(connections): copy to clipboard on right click 2023-09-03 17:32:08 +08:00
postcss.config.js chore: initial commit 2023-08-27 15:34:12 +08:00
README.md docs: update preview image 2023-09-03 16:53:48 +08:00
tailwind.config.ts chore: add eslint to enforce code quality 2023-09-03 15:30:56 +08:00
tsconfig.json refactor: skipLibCheck 2023-09-03 20:31:13 +08:00
vite.config.ts feat: display current version 2023-09-03 18:16:09 +08:00

metacubexd

hits pr/issue lastcommit build-status version license

Clash-Meta Dashboard

Preview

preview

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

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

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

Usage

Run inside Docker

docker cli

Running

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

Update and restart

docker pull ghcr.io/metacubex/metacubexd && docker restart 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

Running

docker compose up -d

Update and restart

docker compose pull && docker compose up -d

Build locally

Install npm dependencies

pnpm install

Build artifacts

pnpm build

Serve static files

pnpm serve