Skip to content

Commit

Permalink
Merge pull request #2203 from openziti/allinone-controller-image
Browse files Browse the repository at this point in the history
use the controller image so the console is available
  • Loading branch information
qrkourier authored Jul 26, 2024
2 parents cefb322 + 8f662f4 commit 79e430e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test-quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ jobs:
working-directory: ./quickstart/docker/all-in-one
env:
ZITI_GO_VERSION: ${{ steps.setup-go.outputs.go-version }}
run: docker compose --profile test run --rm quickstart-test
run: |
sleep 9 # wait a moment for the :local image to build
docker compose --profile test run --rm quickstart-test
- name: Print debug info
if: always()
Expand Down
2 changes: 1 addition & 1 deletion quickstart/docker/all-in-one/compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
wait-for-login:
profiles:
- test
image: ${ZITI_CLI_IMAGE:-docker.io/openziti/ziti-cli}:${ZITI_CLI_TAG:-latest}
image: ${ZITI_CLI_IMAGE:-docker.io/openziti/ziti-controller}:${ZITI_CLI_TAG:-latest}
networks:
- quickstart
# run as the same user as the host, so we can write in ~/.config/ziti
Expand Down
2 changes: 1 addition & 1 deletion quickstart/docker/all-in-one/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
quickstart:
image: ${ZITI_CLI_IMAGE:-docker.io/openziti/ziti-cli}:${ZITI_CLI_TAG:-latest}
image: ${ZITI_CLI_IMAGE:-docker.io/openziti/ziti-controller}:${ZITI_CLI_TAG:-latest}
restart: unless-stopped
networks:
quickstart:
Expand Down

0 comments on commit 79e430e

Please sign in to comment.