We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ac659 commit b061a5fCopy full SHA for b061a5f
docker-compose-tests.yaml
@@ -28,7 +28,12 @@ services:
28
29
replicator:
30
image: python:3.12.4-slim-bookworm
31
- command: bash -c "pip install -r /app/requirements.txt && tail -f /dev/null"
+ command: bash -c "pip install -r /app/requirements.txt && pip install -r /app/requirements-dev.txt && touch /tmp/ready && tail -f /dev/null"
32
+ healthcheck:
33
+ test: [ 'CMD-SHELL', 'test -f /tmp/ready' ]
34
+ interval: 2s
35
+ retries: 100
36
+ start_period: 10s
37
network_mode: host
38
volumes:
39
- ./:/app/
0 commit comments