Skip to content

Commit 1545902

Browse files
authored
Add step to create symlink when Docker for Mac 4.13 is installed (testcontainers#6064)
Starting Docker for Mac 4.13, `/var/run/docker.sock` symlink is not created. In order to use it with Testcontainers, the next command should be executed right after the installation `sudo ln -s $HOME/.docker/run/docker.sock /var/run/docker.sock`
1 parent b0af2f4 commit 1545902

File tree

1 file changed

+10
-10
lines changed
  • docs/supported_docker_environment

1 file changed

+10
-10
lines changed

docs/supported_docker_environment/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ However, these are not actively tested in the main development workflow, so not
1111
If you have further questions about configuration details for your setup or whether it supports running Testcontainers-based tests,
1212
please contact the Testcontainers team and other users from the Testcontainers community on [Slack](https://slack.testcontainers.org/).
1313

14-
| Host Operating System / Environment | Minimum recommended docker versions | Known issues / tips |
15-
|-------------------------------------|-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
16-
| Linux - general | Docker v17.09 | After docker installation, follow [post-installation steps](https://docs.docker.com/engine/install/linux-postinstall/). |
17-
| Linux - CircleCI (LXC driver) | Docker v17.09 | The `exec` feature is not compatible with CircleCI. See CircleCI configuration [example](./continuous_integration/circle_ci.md) |
18-
| Linux - within a Docker container | Docker v17.09 | See [Running inside Docker](continuous_integration/dind_patterns.md) for Docker-in-Docker and Docker wormhole patterns |
19-
| Mac OS X - Docker Toolbox | Docker Machine v0.8.0 | |
20-
| Mac OS X - Docker for Mac | v17.09 | *Support is best-efforts at present*. `getTestHostIpAddress()` is [not currently supported](https://github.com/testcontainers/testcontainers-java/issues/166) due to limitations in Docker for Mac. |
21-
| Windows - Docker Toolbox | | *Support is limited at present and this is not currently tested on a regular basis*. |
22-
| Windows - Docker for Windows | | *Support is best-efforts at present.* Only Linux Containers (LCOW) are supported at the moment. See [Windows Support](windows.md) |
23-
| Windows - Windows Subsystem for Linux (WSL) | Docker v17.09 | *Support is best-efforts at present.* Only Linux Containers (LCOW) are supported at the moment. See [Windows Support](windows.md). |
14+
| Host Operating System / Environment | Minimum recommended docker versions | Known issues / tips |
15+
|-------------------------------------|-----------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
16+
| Linux - general | Docker v17.09 | After docker installation, follow [post-installation steps](https://docs.docker.com/engine/install/linux-postinstall/). |
17+
| Linux - CircleCI (LXC driver) | Docker v17.09 | The `exec` feature is not compatible with CircleCI. See CircleCI configuration [example](./continuous_integration/circle_ci.md) |
18+
| Linux - within a Docker container | Docker v17.09 | See [Running inside Docker](continuous_integration/dind_patterns.md) for Docker-in-Docker and Docker wormhole patterns |
19+
| Mac OS X - Docker Toolbox | Docker Machine v0.8.0 | |
20+
| Mac OS X - Docker for Mac | v17.09 | Starting 4.13, run `sudo ln -s $HOME/.docker/run/docker.sock /var/run/docker.sock`<br>Support is best-efforts at present<br>`getTestHostIpAddress()` is [not currently supported](https://github.com/testcontainers/testcontainers-java/issues/166) due to limitations in Docker for Mac. |
21+
| Windows - Docker Toolbox | | *Support is limited at present and this is not currently tested on a regular basis*. |
22+
| Windows - Docker for Windows | | *Support is best-efforts at present.* Only Linux Containers (LCOW) are supported at the moment. See [Windows Support](windows.md) |
23+
| Windows - Windows Subsystem for Linux (WSL) | Docker v17.09 | *Support is best-efforts at present.* Only Linux Containers (LCOW) are supported at the moment. See [Windows Support](windows.md). |
2424

2525
## Using Colima?
2626

0 commit comments

Comments
 (0)