mirror
Go to file
2023-09-03 15:30:56 +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 feat(logs): render logs in table 2023-09-01 22:07:11 +08:00
src chore: add eslint to enforce code quality 2023-09-03 15:30:56 +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 chore: initial commit 2023-08-27 15:34:12 +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.57.2 (#112) 2023-09-03 14:36:37 +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: add eslint to enforce code quality 2023-09-03 15:30:56 +08:00
pnpm-lock.yaml chore: add eslint to enforce code quality 2023-09-03 15:30:56 +08:00
postcss.config.js chore: initial commit 2023-08-27 15:34:12 +08:00
README.md docs: add badges 2023-09-03 06:46:45 +08:00
tailwind.config.ts chore: add eslint to enforce code quality 2023-09-03 15:30:56 +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

hits pr/issue lastcommit build-status version license

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

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