Code Monkey home page Code Monkey logo

Comments (4)

gioamato avatar gioamato commented on July 2, 2024 1

Add wait-for-it to the container and use a docker entrypoint:

# DOCKERFILE
FROM <image:tag>

# Add 'wait-for-it' to check upstream availability
COPY wait-for-it.sh /usr/local/bin/wait-for-it
RUN chmod +x /usr/local/bin/wait-for-it

# Add entrypoint script
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint
RUN chmod +x /usr/local/bin/docker-entrypoint

ENTRYPOINT ["docker-entrypoint"]
CMD []

Then you can do your things inside the entrypoint script:

# ENTRYPOINT
#!/bin/bash
set -euo pipefail

# eventually start your server

# wait upstream server availability
wait-for-it <server>:<port> --timeout=300 --strict

# do your things
curl <server>:<port>

# eventually keep your container running
exec tail -f /dev/null

This works but it is not optimal. You should design your container to run just one process, in the foreground.
Everything depends on your process, so it's hard to guess without knowing more about your use case.
You could think to start the server and do your things in the entrypoint and then restart it and keep it running with a CMD line at the end of Dockerfile or entrypoint.

from wait-for-it.

luizsla avatar luizsla commented on July 2, 2024 1

Thanks for the tip @gioamato, it helped a lot!

from wait-for-it.

akauppi avatar akauppi commented on July 2, 2024

I do this with Docker Compose, by depends_on to the service(s) to wait for.

services:
  warm-up:

  warmed-up:
    ...
    command: sh -c
      'wait-for-it warm-up:6768 --timeout=60
      '
    depends_on: ['warm-up']
    profiles: ['manual']

from wait-for-it.

deiga avatar deiga commented on July 2, 2024

I do this with Docker Compose, by depends_on to the service(s) to wait for.

services:
  warm-up:

  warmed-up:
    ...
    command: sh -c
      'wait-for-it warm-up:6768 --timeout=60
      '
    depends_on: ['warm-up']
    profiles: ['manual']

This only works for any environment you use docker-compose with, if you use anything like Fargate or k8s then this is not an option

from wait-for-it.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.