Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ahoy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ commands:
up:
usage: Build and start containers.
cmd: |
docker compose up -d "$@"
docker compose up --detach "$@"
if docker compose logs | grep -q "\[Error\]"; then exit 1; fi

down:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ jobs:
continue-on-error: ${{ vars.VORTEX_CI_DCLINT_IGNORE_FAILURE == '1' }}

- name: Build stack
run: docker compose up -d
run: docker compose up --detach && docker builder prune --all --force

- name: Export built codebase
if: ${{ matrix.instance == 0 && !startsWith(github.head_ref || github.ref_name, 'deps/') && contains(env.VORTEX_DEPLOY_TYPES, 'artifact') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ commands:
up:
usage: Build and start containers.
cmd: |
docker compose up -d "$@"
docker compose up --detach "$@"
if docker compose logs | grep -q "\[Error\]"; then exit 1; fi

down:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ jobs:
continue-on-error: ${{ vars.VORTEX_CI_DCLINT_IGNORE_FAILURE == '1' }}

- name: Build stack
run: docker compose up -d
run: docker compose up --detach && docker builder prune --all --force

- name: Export built codebase
if: ${{ matrix.instance == 0 && !startsWith(github.head_ref || github.ref_name, 'deps/') && contains(env.VORTEX_DEPLOY_TYPES, 'artifact') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:

- run:
name: Build stack
command: docker compose up -d
command: docker compose up --detach && docker builder prune --all --force

- run:
name: Export built codebase
Expand Down
Loading