mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 18:53:37 +00:00
22 lines
589 B
YAML
22 lines
589 B
YAML
services:
|
|
pulse-app:
|
|
image: rcourtman/pulse:latest
|
|
container_name: pulse-app
|
|
ports:
|
|
- "7654:7654"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
- LOG_LEVEL=info
|
|
- NODE_OPTIONS=--no-warnings
|
|
- SUPPRESS_NO_CONFIG_WARNING=true
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "1m"
|
|
max-file: "1"
|
|
restart: unless-stopped
|
|
# Host network mode is commented out by default for better security
|
|
# Only enable if you're still experiencing WebSocket connection issues
|
|
# network_mode: "host" |