mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
Jakub Sokołowski
74cdcbb700
Using `latest` tag is dangerous for non-technical users. And updating `latest` tag willy-nilly is also bad. Signed-off-by: Jakub Sokołowski <jakub@status.im>
16 lines
382 B
YAML
16 lines
382 B
YAML
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'
|