Skip to content

Commit 2cf6736

Browse files
committed
ci(main): fix
1 parent 4e653bd commit 2cf6736

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Load image to docker
2020
run: nix run .#load-fractopo-image
2121
- name: Run fractopo-app container
22-
run: docker run -d --name fractopo-test -p 2718:2718 localhost/fractopo-app:vsrjfhp7gd4pgxxzhdrmnr4xglwyln35
22+
run: docker run -d --name fractopo-test -p 2718:2718 fractopo-app:vsrjfhp7gd4pgxxzhdrmnr4xglwyln35
2323
- name: Wait for API to be ready
2424
run: |-
2525
for i in {1..30}; do

nix/ci.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ in
172172
let
173173
inherit (inputs.self.legacyPackages.x86_64-linux.fractopo-app-image-stream) imageName imageTag;
174174
in
175-
"docker run -d --name fractopo-test -p 2718:2718 localhost/${imageName}:${imageTag}";
175+
"docker run -d --name fractopo-test -p 2718:2718 ${imageName}:${imageTag}";
176176
}
177177
{
178178
name = "Wait for API to be ready";

0 commit comments

Comments
 (0)