mirror of
https://github.com/status-im/sn-api.git
synced 2026-08-31 01:31:07 +00:00
21 lines
433 B
YAML
21 lines
433 B
YAML
---
|
|
services:
|
|
node_backend:
|
|
container_name: "node_backend"
|
|
restart: always
|
|
build: .
|
|
ports:
|
|
- ${NODE_PORT}:${NODE_PORT}
|
|
volumes:
|
|
- ./docker-entrypoint.sh:/usr/src/app/docker-entrypoint.sh
|
|
networks:
|
|
- sn-api-net
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "nc -vz localhost ${NODE_PORT}"]
|
|
interval: 10s
|
|
timeout: 2s
|
|
retries: 5
|
|
start_period: 10s
|
|
|
|
networks:
|
|
sn-api-net: |