mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 14:00:29 +00:00
21 lines
461 B
YAML
21 lines
461 B
YAML
services:
|
|
pulse-app:
|
|
image: rcourtman/pulse:latest
|
|
container_name: pulse-app
|
|
ports:
|
|
- "7654:7654"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- NODE_ENV=production
|
|
- NODE_OPTIONS=--no-warnings
|
|
- DEBUG=false
|
|
- NODE_DEBUG=false
|
|
- SUPPRESS_NO_CONFIG_WARNING=true
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "1m"
|
|
max-file: "1"
|
|
restart: unless-stopped |