File tree Expand file tree Collapse file tree
rootfs/docker-entrypoint-initdb.d Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ GO_PACKAGES = dockercli etcdutils mock utils
1010GO_PACKAGES_REPO_PATH = $(addprefix $(repo_path ) /,$(GO_PACKAGES ) )
1111
1212MOCK_STORE_IMAGE = $(IMAGE_PREFIX ) mock-store:latest
13+ TEST_ETCD_IMAGE = $(IMAGE_PREFIX ) test-etcd:latest
14+ TEST_POSTGRESQL_IMAGE = $(IMAGE_PREFIX ) test-postgresql:latest
1315
1416test : test-smoke
1517
@@ -38,6 +40,12 @@ setup-gotools:
3840mock-store :
3941 docker build -t $(MOCK_STORE_IMAGE ) fixtures/mock-store/
4042
43+ test-etcd :
44+ docker build -t $(TEST_ETCD_IMAGE ) fixtures/test-etcd/
45+
46+ test-postgresql :
47+ docker build -t $(TEST_POSTGRESQL_IMAGE ) fixtures/test-postgresql/
48+
4149test-style :
4250# display output, then check
4351 $(GOFMT) $(GO_PACKAGES) $(GO_FILES)
File renamed without changes.
Original file line number Diff line number Diff line change 1+ FROM postgres:9.3
2+
3+ COPY rootfs/docker-entrypoint-initdb.d /docker-entrypoint-initdb.d
Original file line number Diff line number Diff line change 1+ echo " Initialization complete."
You can’t perform that action at this time.
0 commit comments