2019-02-06 16:47:01 +00:00
|
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
mailserver:
|
|
|
|
container_name: '${CONTAINER_NAME}'
|
|
|
|
image: statusteam/status-go:latest
|
|
|
|
entrypoint: statusd
|
|
|
|
restart: always
|
2020-04-08 11:24:02 +00:00
|
|
|
command: |
|
|
|
|
-log=${LOG_LEVEL}
|
|
|
|
-log-without-color
|
|
|
|
-metrics
|
|
|
|
-metrics-port=${METRICS_PORT}
|
|
|
|
-c=/config.json
|
|
|
|
-dir=/data
|
2019-02-06 16:47:01 +00:00
|
|
|
ports:
|
|
|
|
- '127.0.0.1:${RPC_PORT}:${RPC_PORT}'
|
2020-04-08 11:24:02 +00:00
|
|
|
- '127.0.0.1:${METRICS_PORT}:${METRICS_PORT}'
|
|
|
|
- '0.0.0.0:${LISTEN_PORT}:${LISTEN_PORT}/tcp'
|
|
|
|
- '0.0.0.0:${LISTEN_PORT}:${LISTEN_PORT}/udp'
|
2019-02-06 16:47:01 +00:00
|
|
|
volumes:
|
2019-09-16 09:38:33 +00:00
|
|
|
- '${DATA_PATH}/config.json:/config.json'
|
2019-02-06 16:47:01 +00:00
|
|
|
- '${DATA_PATH}:/data'
|