mirror of
https://github.com/status-im/status-go.git
synced 2025-02-10 05:45:30 +00:00
16 lines
361 B
YAML
16 lines
361 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
mailserver:
|
||
|
container_name: '${CONTAINER_NAME}'
|
||
|
image: ${CONTAINER_IMAGE}
|
||
|
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}'
|
||
|
volumes:
|
||
|
- '${PWD}/keys:/keys'
|