Add dependency on webserver for attacker service and update curl command

This commit is contained in:
Lukian 2025-01-21 09:59:37 +01:00
parent f5b3dd4f92
commit 5d13bf0155
2 changed files with 2 additions and 1 deletions

View file

@ -15,6 +15,8 @@ services:
- 5001:5001
networks:
- mynetwork
depends_on:
- webserver
networks:
mynetwork:

View file

@ -1,4 +1,3 @@
FROM alpine:latest
RUN apk add --no-cache curl iputils-ping
#curl --insecure https://localhost/
CMD ["curl", "--insecure", "https://webserver/"]