Skip to content

Commit 0c5071f

Browse files
committed
Rename dockers
1 parent ac79f2d commit 0c5071f

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,61 +21,61 @@ jobs:
2121
- name: "tests"
2222
run: npm run test
2323

24-
- name: Publish dvc-cml docker image
25-
# only publish if push to master (dvcorg/dvc-cml:latest)
26-
# or create a tag in the repo (dvcorg/dvc-cml:tag)
24+
- name: Publish CML docker image
25+
# only publish if push to master (dvcorg/cml:latest)
26+
# or create a tag in the repo (dvcorg/cml:tag)
2727
if: github.event_name == 'push' && (contains(github.ref, 'tags') || github.ref == 'refs/heads/master')
2828
uses: elgohr/Publish-Docker-Github-Action@master
2929
with:
30-
name: dvcorg/dvc-cml
30+
name: dvcorg/cml
3131
username: ${{ secrets.DOCKERHUB_USERNAME }}
3232
password: ${{ secrets.DOCKERHUB_PASSWORD }}
3333
dockerfile: ./docker/Dockerfile
3434
context: ./
3535
cache: true
3636
tag_names: true
3737

38-
- name: Publish dvc-cml-py3 docker image
38+
- name: Publish cml-py3 docker image
3939
if: github.event_name == 'push' && (contains(github.ref, 'tags') || github.ref == 'refs/heads/master')
4040
uses: elgohr/Publish-Docker-Github-Action@master
4141
with:
42-
name: dvcorg/dvc-cml-py3
42+
name: dvcorg/cml-py3
4343
username: ${{ secrets.DOCKERHUB_USERNAME }}
4444
password: ${{ secrets.DOCKERHUB_PASSWORD }}
4545
dockerfile: ./docker/Dockerfile-py3
4646
context: ./
4747
cache: true
4848
tag_names: true
4949

50-
- name: Publish dvc-cml-dev docker image
50+
- name: Publish cml-dev docker image
5151
if: github.event_name == 'push' && (contains(github.ref, 'tags') || github.ref == 'refs/heads/master')
5252
uses: elgohr/Publish-Docker-Github-Action@master
5353
with:
54-
name: dvcorg/dvc-cml-dev
54+
name: dvcorg/cml-dev
5555
username: ${{ secrets.DOCKERHUB_USERNAME }}
5656
password: ${{ secrets.DOCKERHUB_PASSWORD }}
5757
dockerfile: ./docker/Dockerfile-dev
5858
context: ./
5959
cache: true
6060
tag_names: true
6161

62-
- name: Publish dvc-cml-gpu docker image
62+
- name: Publish cml-gpu docker image
6363
if: github.event_name == 'push' && (contains(github.ref, 'tags') || github.ref == 'refs/heads/master')
6464
uses: elgohr/Publish-Docker-Github-Action@master
6565
with:
66-
name: dvcorg/dvc-cml-gpu
66+
name: dvcorg/cml-gpu
6767
username: ${{ secrets.DOCKERHUB_USERNAME }}
6868
password: ${{ secrets.DOCKERHUB_PASSWORD }}
6969
dockerfile: ./docker/Dockerfile-gpu
7070
context: ./
7171
cache: true
7272
tag_names: true
7373

74-
- name: Publish dvc-cml-gpu-py3 docker image
74+
- name: Publish cml-gpu-py3 docker image
7575
if: github.event_name == 'push' && (contains(github.ref, 'tags') || github.ref == 'refs/heads/master')
7676
uses: elgohr/Publish-Docker-Github-Action@master
7777
with:
78-
name: dvcorg/dvc-cml-gpu-py3
78+
name: dvcorg/cml-gpu-py3
7979
username: ${{ secrets.DOCKERHUB_USERNAME }}
8080
password: ${{ secrets.DOCKERHUB_PASSWORD }}
8181
dockerfile: ./docker/Dockerfile-gpu-py3

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ RUN apt-get update && \
2626

2727
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
2828

29-
# Install update pip and nodejs, install dvc and dvc-cml
30-
ADD "./" "/dvc-cml"
29+
# Install update pip and nodejs, install dvc and cml
30+
ADD "./" "/cml"
3131
RUN wget https://dvc.org/deb/dvc.list -O /etc/apt/sources.list.d/dvc.list && \
3232
apt update && \
3333
apt install dvc && \
3434
npm config set user 0 && \
3535
npm config set unsafe-perm true && \
36-
npm install -g /dvc-cml && \
36+
npm install -g /cml && \
3737
npm install -g vega-cli && \
3838
npm install -g vega-lite && \
3939
apt-get install -y libfontconfig-dev && \

docker/Dockerfile-dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dvcorg/dvc-cml-py3:latest
1+
FROM dvcorg/cml-py3:latest
22

33
LABEL maintainer="dvc.org"
44

docker/Dockerfile-gpu

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ RUN apt-get update && \
3030

3131
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
3232

33-
# Install update pip and nodejs, install dvc and dvc-cml
34-
ADD "./" "/dvc-cml"
33+
# Install update pip and nodejs, install dvc and cml
34+
ADD "./" "/cml"
3535
RUN wget https://dvc.org/deb/dvc.list -O /etc/apt/sources.list.d/dvc.list && \
3636
apt update && \
3737
apt install dvc && \
3838
npm config set user 0 && \
3939
npm config set unsafe-perm true && \
40-
npm install -g /dvc-cml && \
40+
npm install -g /cml && \
4141
npm install -g vega-cli && \
4242
npm install -g vega-lite && \
4343
apt-get install -y libfontconfig-dev && \

docker/Dockerfile-gpu-py3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dvcorg/dvc-cml-gpu:latest
1+
FROM dvcorg/cml-gpu:latest
22

33
LABEL maintainer="dvc.org"
44

docker/Dockerfile-py3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dvcorg/dvc-cml:latest
1+
FROM dvcorg/cml:latest
22

33
LABEL maintainer="dvc.org"
44

0 commit comments

Comments
 (0)