From 92a142be34fe0f487811cc33d6ddc1ee182bf059 Mon Sep 17 00:00:00 2001 From: Pierce Thompson Date: Fri, 19 Apr 2024 23:57:44 -0400 Subject: [PATCH] Update default dockerfile --- docker-compose.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0aa5a31..4982b44 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,10 @@ services: intellectual: - image: insprill/intellectual:latest - container_name: intellectual + image: insprill/intellectual restart: always ports: - - 127.0.0.1:8080:8080 + - 8080:8080 # Use `127.0.0.1:8080:8080` if you're using a reverse proxy on the same machine. healthcheck: test: wget -nv --tries=1 --spider http://127.0.0.1:8080 || exit 1 - interval: 5m + interval: 1m timeout: 5s