From 5d42c03f3f198fc96145b4b48a86aeffc582e7d6 Mon Sep 17 00:00:00 2001 From: Pierce Thompson Date: Fri, 31 May 2024 00:47:27 -0400 Subject: [PATCH] Update docker-compose.yml --- docker-compose.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4982b44..dcc0813 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,14 @@ services: intellectual: - image: insprill/intellectual + image: insprill/intellectual:latest # Switch to 'develop' to use the latest git version. May be unstable! restart: always ports: - 8080:8080 # Use `127.0.0.1:8080:8080` if you're using a reverse proxy on the same machine. + read_only: true + security_opt: + - no-new-privileges:true + cap_drop: + - ALL healthcheck: test: wget -nv --tries=1 --spider http://127.0.0.1:8080 || exit 1 interval: 1m