mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 10:35:51 +00:00
c8644ff55c
- Add docker-compose.dev.yml for local development - Update docker-compose.yml to use image by default - Add docker-compose.dev.yml to .gitignore
18 lines
366 B
YAML
18 lines
366 B
YAML
services:
|
|
pulse-app:
|
|
build: .
|
|
container_name: pulse-app
|
|
ports:
|
|
- "7654:7654"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- 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 |