You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM eaudeweb/mailtrap
# Specify the tini version to use and install it
ENV TINI_VERSION v0.9.0
RUN wget https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini -O /tini && \
chmod +x /tini
# Use tini instead of the docker-entrypoint directly
ENTRYPOINT ["/tini" , "--"]
CMD ["/var/local/docker-entrypoint.sh"]
This will make your container more responsive when it is stopped...
The text was updated successfully, but these errors were encountered:
Do you know about tini? Check out https://github.com/krallin/tini.
I added it to your image by simply doing:
This will make your container more responsive when it is stopped...
The text was updated successfully, but these errors were encountered: