Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 1.16 KB

File metadata and controls

33 lines (19 loc) · 1.16 KB

This project has been created as part of the 42 curriculum by srahhali

Setting up the environment

The required environment variables can be found in USER_DOC.md

Build and Launch

Refer to USER_DOC.md for instructions on building and launching.

Managing the containers and volumes

docker compose exec allows you to execute a shell in any of the running containers.

docker compose cp allows you to copy a file into any of the running containers.

docker compose kill allows you to force stop any of the running containers.

docker compose start allows you to start any of the running containers.

docker compose stop allows you to stop any of the running containers.

docker compose volumes allows you to inspect any of the containers' volumes.

Data Storage

The data is stored in the user srahhali's home directory, in the data directory. If running as another user, change all the hardcoded srahhali references to desired user.

This data persist from container launch to container launch due to it being mounted during runtime into the container, and the real data being stored outside the container.