Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ services:
container_name: openhamclock
ports:
- "3000:3000"
- "2237:2237/udp" # WSJT-X UDP — point WSJT-X to 127.0.0.1:2237
- "2237:2237/udp" # WSJT-X UDP — point WSJT-X to 127.0.0.1:2237
env_file: .env # Copy .env.example to .env and fill in your values
environment:
- NODE_ENV=production
- PORT=3000
Expand All @@ -15,7 +16,7 @@ services:
# - WSJTX_RELAY_KEY=your-secret-relay-key-here
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/health"]
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/health" ]
interval: 30s
timeout: 10s
retries: 3
Expand Down
Loading