Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 856 Bytes

docker.md

File metadata and controls

26 lines (23 loc) · 856 Bytes

How to start local development docker container

After installing docker on your system, start the docker daemon and then:

make local-dev-build
make local-dev-run
# you are now in shell in the docker container, feel free to do any development work!
# to see the source code dir:
ls local/src

If you exited the shell and want to shell back

make local-dev-shell

If you exited the shell and want to tear down local dev environment

make local-dev-down

Code changed locally in your computer or docker is not synced to each other. To restart docker that contains your local changes in your computer, exit the docker container shell and then:

make local-dev-restart
# you are now in the shell in the docker container