mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-27 17:41:11 +00:00
34 lines
928 B
YAML
34 lines
928 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
setup:
|
|
container_name: setup
|
|
image: ghcr.io/logos-blockchain/logos-blockchain:${TOOLS_IMAGE_LABEL}
|
|
volumes:
|
|
- node-data:/node-data
|
|
- ./nodes/node/binary/src/config/deployment/settings.yaml:/deployment.yaml
|
|
- ./deployment:/etc/logos-blockchain
|
|
entrypoint: /etc/logos-blockchain/scripts/cleanup_node_data.sh
|
|
|
|
nginx:
|
|
container_name: nginx
|
|
image: docker.io/library/nginx:stable-trixie-perl
|
|
ports:
|
|
- "13000:13000"
|
|
- "13001:13001"
|
|
depends_on:
|
|
- setup
|
|
environment:
|
|
- ENV_TITLE_STRING=${ENV_TITLE_STRING}
|
|
volumes:
|
|
- node-data:/node-data
|
|
- ./deployment/nginx/setup.conf:/etc/nginx/nginx.conf
|
|
- ./deployment/nginx/static/setup:/usr/share/nginx/html_template
|
|
- ./deployment/scripts/setup_nginx.sh:/etc/setup_nginx.sh
|
|
entrypoint: /etc/setup_nginx.sh
|
|
|
|
volumes:
|
|
node-data:
|
|
name: logos-node-data
|