Files
SRCmail/docker-compose.yml
T
Matthieu MALVACHEandMatthieu MALVACHE d7cda6f870 chore(docker): use pre-built GHCR image in docker-compose
Replace local build with ghcr.io/root-fr/jmap-webmail:latest so users
can deploy without cloning and building the source.
2026-02-21 23:57:39 +01:00

15 lines
361 B
YAML

services:
webmail:
image: ghcr.io/root-fr/jmap-webmail:latest
ports:
- "3000:3000"
env_file:
- .env.local
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3000/api/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
restart: unless-stopped