-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.yml.sample
62 lines (53 loc) · 1.96 KB
/
docker-compose.override.yml.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# The "Multiple Compose File" feature provides a very powerful way to override
# any configuration in docker-compose.yml without needing to modify
# git-checked-in files since that results in conflicts when upgrading this repo.
# See https://docs.docker.com/compose/extends/#multiple-compose-files for more.
# Just copy this file to `docker-compose.override.yml` and customise it to your liking.
# `cp docker-compose.override.yml.sample docker-compose.override.yml`
# Some example overrides are commented out below. Any uncommented section
# below will automatically override the same section in
# docker-compose.yml when ran with `docker-compose up`.
# See https://docs.docker.com/compose/extends/#adding-and-overriding-configuration for details.
# WARNING: This is for power users only and requires a deep understanding of Docker Compose
# and how the local docker-compose.yml is configured.
#services:
#geth:
# Disable geth
#profiles: [disable]
# Bind geth internal ports to host ports
#ports:
#- 8545:8545 # JSON-RPC
#- 8551:8551 # AUTH-RPC
#- 6060:6060 # Metrics
#lighthouse:
# Disable lighthouse
#profiles: [disable]
# Bind lighthouse internal ports to host ports
#ports:
#- 5052:5052 # HTTP
#- 5054:5054 # Metrics
#charon:
# Configure any additional env var flags in .env.charon.more
#env_file: [.env.charon.more]
# Bind charon internal ports to host ports
#ports:
#- 3600:3600/tcp # Validator API
#- 3620:3620/tcp # Monitoring
#lodestar:
# Disable lodestar
#profiles: [disable]
# Bind lodestar internal ports to host ports
#ports:
#- 5064:5064 # Metrics
#prometheus:
# Disable prometheus
#profiles: [disable]
# Bind prometheus internal ports to host ports
#ports:
#- 9090:9090 # Metrics
#mev-boost:
# Disable mev-boost
#profiles: [disable]
# Bind mev-boost internal ports to host ports
#ports:
#- 18550:18550 # Metrics