Compare commits

...

3 Commits

Author SHA1 Message Date
derekc 8d909496f4 changed the container name and added healthcheck 2026-05-10 22:38:36 -07:00
derekc 885e77ec8b Changed the container name 2026-05-10 22:38:13 -07:00
derekc 87572f60dd changed restart policy 2026-05-10 22:37:58 -07:00
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ services:
resources:
limits:
memory: 512m
restart: always
restart: unless-stopped
volumes:
airtrail-db:
+1 -1
View File
@@ -1,7 +1,7 @@
services:
app:
image: jgraph/drawio:${DRAWIO_VERSION:-latest}
container_name: drawio
container_name: draw-io
ports:
- ${DRAWIO_PORT:-8080}:8080
environment:
+7 -1
View File
@@ -1,11 +1,17 @@
services:
app:
image: corentinth/it-tools:latest
container_name: ittools
container_name: it-tools
ports:
- ${IT_TOOLS_PORT}:80
deploy:
resources:
limits:
memory: 512m
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://127.0.0.1/ || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
restart: unless-stopped