Run portfolio inside a docker container
If you want to expose a different port, edit docker-compose.yml
# run production build
$ docker-compose up -d
# run production build (with rebuild in case of new changes)
$ docker-compose up -d --build
# view docker logs
$ docker-compose logs -t -f
# close docker process
$ docker-compose down
# switch to working directory
$ cd frontend/
# install neccessary dependencies
$ yarn install
# run application in dev mode port :3000
$ yarn dev
Distributed under the MIT License. See LICENSE for more information.