-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose-devpod.yaml
More file actions
34 lines (33 loc) · 988 Bytes
/
compose-devpod.yaml
File metadata and controls
34 lines (33 loc) · 988 Bytes
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
# this compose file is written and invoked using the guidelines defined here:
# https://github.com/ChorusOne/hopper-build-container/blob/main/docker.md
# so that the project can be run in all docker-outside-of-docker environments
# (devpod, github ci, cloud build, etc)
networks:
default:
external: true
name: ${POSSIM_DOCKER_NETWORK:-${C1_DOCKER_NETWORK}}
services:
possim:
extends:
file: compose.yaml
service: possim
networks:
default:
aliases:
# use an alias with a .devel tld to avoid DNS resolution
# normally we'd just use the `container-name.` hostname, but the container_name
# is ignored when running using docker compose run command
- ${POSSIM_HOSTNAME}
expose:
# execution wsrpc
- "18546"
# execution rpc
- "18544"
# beacon rest
- "15050"
# beacon teku
- "15051"
# beacon lighthouse
- "15151"
# mev relay
- "38000"