Running PXE at a custom port with aztec-sandbox
is only possible by adding PORT: 8000
in docker-compose.yml
#4904
Labels
A-documentation
Area: relates to documentation
I tried to run Sandbox at a different port instead of 8080. The command
aztec-sandbox PXE_PORT=8000
is supposed to run it at port 8000 but it didn't work.Sandbox log shows:
sandbox-aztec-1 | Aztec Server listening on port 8080
On frontend:
Instead, what's needed to make it work is to add
PORT: 8000
as an env value for aztecprotocol/aztec image in.aztec/docker-compose.yml
.PORT
, notPXE_PORT
.PORT=8000
to the commandaztec-sandbox PXE_PORT=8000
also didn't work. Somehow it should be hard-coded in the docker-compose.yml file.--
SANDBOX_PXE_PORT
in aztec/docker-compose.yml--
AZTEC_PORT
in aztec/src/cli/cli.tsThe text was updated successfully, but these errors were encountered: