Skip to content

Commit

Permalink
Rename docker tags following repository rename (#916)
Browse files Browse the repository at this point in the history
Our docker tags are labled "ftt" for the previous
repository name "firefox-translations-training".

This patch renames instances of "ftt" to "translations"
since the initialism no longer has meaning to new contributors.
  • Loading branch information
nordzilla authored Nov 1, 2024
1 parent 666ffae commit 371c2da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions utils/tasks/docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ source utils/tasks/docker-setup.sh

docker build \
--file taskcluster/docker/base/Dockerfile \
--tag ftt-base .
--tag translations-base .

docker build \
--build-arg DOCKER_IMAGE_PARENT=ftt-base \
--build-arg DOCKER_IMAGE_PARENT=translations-base \
--file taskcluster/docker/test/Dockerfile \
--tag ftt-test .
--tag translations-test .

docker build \
--build-arg DOCKER_IMAGE_PARENT=ftt-test \
--build-arg DOCKER_IMAGE_PARENT=translations-test \
--file docker/Dockerfile \
--tag ftt-local .
--tag translations-local .
2 changes: 1 addition & 1 deletion utils/tasks/docker-run.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main():
docker_command.extend(["--volume", volume])

# Specify the Docker image
docker_command.append("ftt-local")
docker_command.append("translations-local")

# Append any additional args
if args.other_args:
Expand Down

1 comment on commit 371c2da

@firefoxci-taskcluster
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh oh! Looks like an error!

TemplateError at template.tasks[0]["base_ref"]: $switch can only have one truthy condition

Please sign in to comment.