Skip to content

Commit fb45681

Browse files
authored
Merge pull request #40 from xyctruth/develop
update docker image ghcr.io
2 parents bdb301e + 38fe835 commit fb45681

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/release-drafter-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ template: |
3838
$CHANGES
3939
4040
## Docker Image
41-
- `xyctruth/profiler:v$RESOLVED_VERSION`
41+
- `docker pull ghcr.io/xyctruth/profiler/profiler:v$RESOLVED_VERSION`

README-EN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ npm run dev --base_api_url=http://localhost:8080
6363
## Docker
6464

6565
```bash
66-
docker run -d -p 80:80 --name profiler xyctruth/profiler:latest
66+
docker run -d -p 80:80 --name profiler ghcr.io/xyctruth/profiler/profiler:latest
6767
```
6868

6969
Using custom configuration file
7070

7171
```bash
7272
mkdir ~/profiler-config/
7373
cp ./collector.yaml ~/profiler-config/
74-
docker run -d -p 80:80 -v ~/profiler-config/:/profiler/config/ --name profiler xyctruth/profiler:latest
74+
docker run -d -p 80:80 -v ~/profiler-config/:/profiler/config/ --name profiler ghcr.io/xyctruth/profiler/profiler:latest
7575
```
7676

7777
Using persistent data
7878

7979
```bash
80-
docker run -d -p 80:80 -v ~/profiler-data/:/profiler/data/ --name profiler xyctruth/profiler:latest
80+
docker run -d -p 80:80 -v ~/profiler-data/:/profiler/data/ --name profiler ghcr.io/xyctruth/profiler/profiler:latest
8181
```
8282

8383
## Collector configuration

README-ZH.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ npm run dev --base_api_url=http://localhost:8080
6363
## 容器
6464

6565
```bash
66-
docker run -d -p 80:80 --name profiler xyctruth/profiler:latest
66+
docker run -d -p 80:80 --name profiler ghcr.io/xyctruth/profiler/profiler:latest
6767
```
6868

6969
使用自定义的配置文件
7070

7171
```bash
7272
mkdir ~/profiler-config/
7373
cp ./collector.yaml ~/profiler-config/
74-
docker run -d -p 80:80 -v ~/profiler-config/:/profiler/config/ --name profiler xyctruth/profiler:latest
74+
docker run -d -p 80:80 -v ~/profiler-config/:/profiler/config/ --name profiler ghcr.io/xyctruth/profiler/profiler:latest
7575
```
7676

7777
使用持久化数据
7878

7979
```bash
80-
docker run -d -p 80:80 -v ~/profiler-data/:/profiler/data/ --name profiler xyctruth/profiler:latest
80+
docker run -d -p 80:80 -v ~/profiler-data/:/profiler/data/ --name profiler ghcr.io/xyctruth/profiler/profiler:latest
8181
```
8282

8383

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ npm run dev --base_api_url=http://localhost:8080
6363
## Docker
6464

6565
```bash
66-
docker run -d -p 80:80 --name profiler xyctruth/profiler:latest
66+
docker run -d -p 80:80 --name profiler ghcr.io/xyctruth/profiler/profiler:latest
6767
```
6868

6969
Using custom configuration file
7070

7171
```bash
7272
mkdir ~/profiler-config/
7373
cp ./collector.yaml ~/profiler-config/
74-
docker run -d -p 80:80 -v ~/profiler-config/:/profiler/config/ --name profiler xyctruth/profiler:latest
74+
docker run -d -p 80:80 -v ~/profiler-config/:/profiler/config/ --name profiler ghcr.io/xyctruth/profiler/profiler:latest
7575
```
7676

7777
Using persistent data
7878

7979
```bash
80-
docker run -d -p 80:80 -v ~/profiler-data/:/profiler/data/ --name profiler xyctruth/profiler:latest
80+
docker run -d -p 80:80 -v ~/profiler-data/:/profiler/data/ --name profiler ghcr.io/xyctruth/profiler/profiler:latest
8181
```
8282

8383
## Collector configuration

deploy/kubernetes/1.deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: profiler
20-
image: xyctruth/profiler:latest
20+
image: ghcr.io/xyctruth/profiler/profiler:latest
2121
imagePullPolicy: Always
2222
env:
2323
- name: CONFIG_PATH

0 commit comments

Comments
 (0)