File tree 2 files changed +6
-2
lines changed
platform/view/services/db/driver/sql/postgres
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ orion-server-images:
87
87
.PHONY : testing-docker-images
88
88
testing-docker-images :
89
89
docker pull postgres:16.2-alpine
90
- docker tag postgres:16.2-alpine postgres:latest
90
+ docker tag postgres:16.2-alpine fsc.itests/ postgres:latest
91
91
92
92
INTEGRATION_TARGETS = integration-tests-iou
93
93
INTEGRATION_TARGETS += integration-tests-atsacc
Original file line number Diff line number Diff line change @@ -27,7 +27,11 @@ import (
27
27
_ "modernc.org/sqlite"
28
28
)
29
29
30
- const PostgresImage = "postgres:latest"
30
+ // postgres:latest will not work on Podman, because Podman automatically prefixes it with localhost/
31
+ // docker.io/postgres:latest will not work on Docker, because Docker omits the default repo docker.io
32
+ // itests will not be recognized as a domain, so Podman will still prefix it with localhost
33
+ // Hence we use fsc.itests as domain
34
+ const PostgresImage = "fsc.itests/postgres:latest"
31
35
32
36
type Logger interface {
33
37
Log (... any )
You can’t perform that action at this time.
0 commit comments