-
Run this command to build:
docker build \ -t match-express-local \ --build-arg port=9004 \ -f express.Dockerfile .
-
Run this command, from the root folder:
make db-up
-
Run the necessary migrate and seed commands, if you haven't yet.
-
Run this command to expose the container:
docker run -p 9004:9004 --env-file ./.env.docker match-express-local
-
To stop the process, use the Docker UI or CLI with
docker rm -f <container_id>
(The child process loop has issues terminating)
Edit the variables in the .env.compose
file and run make up
from the root folder.
Any startup instructions will be run from entrypoint.sh
instead.