Go to file
renovate[bot] e712a9f6af
chore(deps): update quay.io/thegeeklab/wp-docker-buildx docker tag to v4 (#69)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-27 08:42:50 +01:00
.github fix github required status checks 2023-11-04 22:35:20 +01:00
.gitsv ci: use git-sv to generate changelog (#65) 2023-12-07 11:38:36 +01:00
.woodpecker chore(deps): update quay.io/thegeeklab/wp-docker-buildx docker tag to v4 (#69) 2024-03-27 08:42:50 +01:00
.dictionary fix spellcheck 2023-08-22 09:34:19 +02:00
.gitignore ci: auto-generate changelog (#14) 2021-03-23 20:41:44 +01:00
.markdownlint.yml unify ci config 2023-08-22 09:25:21 +02:00
.prettierignore ci: migrate to woodpecker 2023-08-22 09:07:13 +02:00
CONTRIBUTING.md fix bare url in contribution file 2023-05-03 08:56:30 +02:00
Containerfile.multiarch chore(docker): update alpine:3.19 docker digest to c5b1261 2024-01-28 08:35:58 +00:00
LICENSE chore: end of the year maintenance 2021-12-21 10:29:15 +01:00
README.md unify ci config 2023-08-22 09:25:21 +02:00
renovate.json chore: use renovate preset config 2021-01-04 16:01:48 +01:00
wait-for fix: fix requirements check (#54) 2023-03-02 14:04:24 +01:00
wait-for.bats enable drone ci 2020-02-03 16:51:44 +01:00

README.md

wait-for

Poor-mans service synchronizer

Build Status Docker Hub Quay.io GitHub contributors Source: GitHub License: MIT

wait-for is a script designed to synchronize services like containers. It is sh and alpine compatible and was forked from eficode/wait-for.

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

Usage

$ wait-for --help
usage: wait-for host:port [-t timeout] [-- command args]

Synchronize services like containers and wait for readiness.

optional arguments:
  -q | --quiet                              Do not output any status messages
  -t WAITFOR_TIMEOUT | --timeout=timeout    Timeout in seconds, zero for no timeout
  -- COMMAND ARGS                           Execute command with args after the test finishes

Dependencies

  • Installed Netcat or Bash (to use /dev/tcp)

Examples

To check if google.com is available:

$ ./wait-for google.com:80 -- echo "Google site is up"

Google 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

Contributors

Special thanks to all contributors. If you would like to contribute, please see the instructions.

License

This project is licensed under the MIT License - see the LICENSE file for details.