Verificamos de forma exhaustivamente cada uno de los posts en nuestra web con la meta de mostrarte siempre información veraz y actual.
Ejemplo: ejemplo de interfaz de usuario de docker swagger
doc:
image: swaggerapi/swagger-ui:latest
restart: always
healthcheck:
interval: 120ms
retries: 5
start_period: 60ms
test: |
touch /tmp/healthcheck.txt &&
mkdir /tmp/healthcheck &&
mv /tmp/healthcheck.txt /tmp/healthcheck &&
cd /tmp/healthcheck &&
echo "hello my docker container is working fine" >> healthcheck.txt &&
cat healthcheck.txt &&
sleep 3 &&
rm "$PWD/healthcheck.txt"
cd .. &&
sleep 3 &&
rmdir "$PWD/healthcheck" &&
clear
timeout: 30ms
environment:
- CONFIG_URL: openapi.yml
ports:
- 8081:8080
volumes:
- openapi.yml:/usr/share/nginx/html/swagger
networks:
- restapi_network
Sección de Reseñas y Valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)