mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
0587e7d63d
* add initial Dockerfile * use alpine, build all source code, use ENTRYPOINT instead of CMD * add initial docker-compose.yml * map ports * add labels to image * fully specify base image version * add logging config * map .config to host folder instead of volume
21 lines
395 B
YAML
21 lines
395 B
YAML
version: "3.8"
|
|
|
|
name: quilibrium
|
|
|
|
services:
|
|
node:
|
|
build: ./
|
|
image: quilibrium
|
|
restart: always
|
|
ports:
|
|
- '8336:8336/udp' # p2p
|
|
- '127.0.0.1:8337:8337/tcp' # gRPC
|
|
- '127.0.0.1:8338:8338/tcp' # REST
|
|
volumes:
|
|
- ./.config:/opt/ceremonyclient/node/.config
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-file: "5"
|
|
max-size: 2048m
|