2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-27 06:56:29 +00:00

16 lines
382 B
YAML
Raw Normal View History

version: "3"
services:
mailserver:
container_name: '${CONTAINER_NAME}'
image: '${CONTAINER_IMG}:${CONTAINER_TAG}'
entrypoint: bootnode
restart: always
command: |
-verbosity=${LOG_LEVEL}
-nodekey=/keys/nodekey
-addr=0.0.0.0:${LISTEN_PORT}
ports:
- '0.0.0.0:${LISTEN_PORT}:${LISTEN_PORT}/udp'
volumes:
- '${PWD}/keys:/keys'