17 lines
350 B
YAML
17 lines
350 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
image: domoel/matrix-to:latest
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
healthcheck:
|
|
test: ["CMD", "curl", "--fail", "http://localhost:80"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|