ceremonyclient/docker-compose.yml
Marius Scurtescu 0587e7d63d
add basic Docker configuration (#46)
* 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
2024-02-17 22:52:11 -06:00

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