Skip to content

Commit

Permalink
Merge pull request #75 from billux/compat-with-new-dockerize
Browse files Browse the repository at this point in the history
Fix compat with newer dockerize
  • Loading branch information
submarcos authored Sep 13, 2023
2 parents 553322e + e170488 commit 53cd803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ services:
);then touch $$flag && break;fi;done )&
set -x \
&& dockerize -wait file://$$flag -timeout $${POSTGRES_STARTUP_TIMEOUT:-120s} \
&& while true;do printf "HTTP/1.1 200 OK\n\nstarted"| ( nc -l -p 80 || /bin/true);done
&& while true;do printf "HTTP/1.1 200 OK\nContent-Length: 8\n\nstarted"| ( busybox nc -l -p 80 || /bin/true );done
volumes:
postgresql:
redis:
Expand Down

0 comments on commit 53cd803

Please sign in to comment.