pull/84/merge
Owen Valentine 6 months ago committed by GitHub
commit cc2dfc5be2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,3 +31,5 @@ ENV ALLOW_RESTARTS=0 \
VERSION=1 \ VERSION=1 \
VOLUMES=0 VOLUMES=0
COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg
RUN apk --no-cache add curl

@ -153,6 +153,43 @@ For example, [balenaOS](https://www.balena.io/os/) exposes its socket at
`/var/run/balena-engine.sock`. To accommodate this, merely set the `SOCKET_PATH` `/var/run/balena-engine.sock`. To accommodate this, merely set the `SOCKET_PATH`
environment variable to `/var/run/balena-engine.sock`. environment variable to `/var/run/balena-engine.sock`.
## Use healthchecks to assert readiness
In some cases, you may wish to start other containers or services only once this
container is ready. The image contains `curl`, so you can build useful healthchecks.
For example, with `docker` CLI, assuming `PING=1` (default):
```sh
docker run -d -v /var/run/docker.sock:/var/run/docker.sock --health-cmd "curl -s http://localhost:2375/_ping | grep 'OK'" --health-interval 5s --health-retries 5 --health-timeout 5s ghcr.io/tecnativa/docker-socket-proxy:edge
```
Or with `docker compose`, you can control startup order automatically using `depends_on`:
```sh
services:
dockerproxy:
image: ghcr.io/tecnativa/docker-socket-proxy:edge
healthcheck:
test:
- CMD-SHELL
- curl -s http://localhost:2375/_ping | grep 'OK'
interval: 5s
retries: 5
timeout: 5s
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
traefik:
depends_on:
dockerproxy:
condition: service_healthy
image: docker.io/traefik:v2.9.9
ports:
- 80:80
- 443:443
restart: unless-stopped
```
## Development ## Development
All the dependencies you need to develop this project (apart from Docker itself) are All the dependencies you need to develop this project (apart from Docker itself) are

Loading…
Cancel
Save