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 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: mix dialyzer --plt

- name: Start docker
run: DOCKER_USER="$UID:$GID" docker-compose up --detach
run: DOCKER_USER="$UID:$GID" docker compose up --detach

- name: Check for unused dependencies
run: mix do deps.get, deps.unlock --check-unused
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ mix test --exclude requires_internet_connection
Run all tests:

```sh
DOCKER_USER="$UID:$GID" docker-compose up --detach # or podman-compose up --detach
DOCKER_USER="$UID:$GID" docker compose up --detach # or podman-compose up --detach
mix test --include proxy
```

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ services:

httpbin:
image: docker.io/kennethreitz/httpbin:latest
platform: linux/amd64
ports:
- "8080:80"

Expand Down
2 changes: 1 addition & 1 deletion test/support/mint/http_bin.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Mint.HttpBin do

def proxy_host() do
# the proxy runs in docker so we use the
# docker-compose name to connect
# docker compose name to connect
"caddyhttpbin"
end

Expand Down