All Collections
FAQs
General
How to install a package in the docker container
How to install a package in the docker container

I want to install a package inside the docker container

Alon Carmel avatar
Written by Alon Carmel
Updated over a week ago

If you want to install a package or run a script inside the docker container, please follow these steps:

  • Run the following command to get the container names

    docker container ps

  • Run the following command to connect to any of the containers

    docker exec -it <name-of-container> bash

  • Navigate into any of the folders you would like to install the package or run the script

    cd backend
    yarn install ....

Did this answer your question?