Does anyone know how to use a different port than ...
# orm-help
i
Does anyone know how to use a different port than 4466 for a prisma docker container? I need to run a testing environment that is running prisma and I need it to use a different port.
c
Use Docker for this ;) docker run -d -p 4488:4466 ...
r
Hey @inlightmedia 👋 You can also change the port in the
docker-compose.yml
file under the
PRISMA_CONFIG
section