Using dockerize to wait for service completed (CI/CD)

2022/1/19 6:03:26

本文主要是介绍Using dockerize to wait for service completed (CI/CD),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

I have a postgresql, and a redis server.

my django application needs to wait for them all completed to run.

BTW, postgresql, redis, django all run in Docker containers . Here 3 containers .

so, use dockerize in my main django Dockerfile

 

# install dockerize
RUN apt-get update && apt-get install -y wget
ENV DOCKERIZE_VERSION v0.6.1
RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
    && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
    && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz

in my docker-compose.yml

  web:
    build: .
    # wait for postgresql, redis server up using dockerize
    command: 
            dockerize -wait tcp://redis-cache:6379 -timeout 30s \
            dockerize -wait tcp://db:5432 -timeout 30s \
            python3 manage.py runserver 0.0.0.0:8000

 

tcp://redis-cache:6379 // my redis server
tcp://db:5432 // my postgresql database server
 

after all tcp ports okay, run the commands

python3 manage.py runserver 0.0.0.0:8000

 



这篇关于Using dockerize to wait for service completed (CI/CD)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程