Go to file
anD 8d9b4446df Update README.md
Added note to install netcat before calling wait-for to avoid time out messages.
2019-11-01 23:10:07 +02:00
.gitignore Add testing using bats 2017-05-03 11:52:29 +03:00
.travis.yml Move travis build and status under Eficode 2017-05-06 15:48:18 +03:00
Dockerfile Add testing using bats 2017-05-03 11:52:29 +03:00
LICENSE initial commit 2017-05-02 20:13:27 +03:00
README.md Update README.md 2019-11-01 23:10:07 +02:00
package.json add name and version so it can be installed with npm 2017-08-04 11:36:14 -07:00
wait-for use 'exec "$@"' 2017-08-25 09:50:42 +09:00
wait-for.bats Add testing using bats 2017-05-03 11:52:29 +03:00

README.md

Wait for another service to become available

./wait-for is a script designed to synchronize services like docker containers. It is sh and alpine compatible. It was inspired by vishnubob/wait-for-it, but the core has been rewritten at Eficode by dsuni and mrako.

When using this tool, you only need to pick the wait-for file as part of your project.

Build Status

Usage

./wait-for host:port [-t timeout] [-- command args]
  -q | --quiet                        Do not output any status messages
  -t TIMEOUT | --timeout=timeout      Timeout in seconds, zero for no timeout
  -- COMMAND ARGS                     Execute command with args after the test finishes

Examples

To check if eficode.com is available:

$ ./wait-for www.eficode.com:80 -- echo "Eficode site is up"

Connection to www.eficode.com port 80 [tcp/http] succeeded!
Eficode site is up

To wait for database container to become available:

version: '2'

services:
  db:
    image: postgres:9.4

  backend:
    build: backend
    command: sh -c './wait-for db:5432 -- npm start'
    depends_on:
      - db

Testing

Ironically testing is done using bats, which on the other hand is depending on bash.

docker build -t wait-for .
docker run -t wait-for

Note

Make sure netcat is installed in your Dockerfile before running the command.

RUN apt-get -q update && apt-get -qy install netcat

https://stackoverflow.com/questions/44663180/docker-why-does-wait-for-always-time-out