Description: A fork of the student organization Beta's website.
Purpose: BetaDEV is trying to improve the old website.
- Git: Used to clone the repository, download here.
- Docker: Used to create and run containers, download here.
- Docker Compose: Used to define and run multi-container Docker applications, included in Docker Desktop (or follow the installation instructions).
- Clone the repository:
git clone https://github.com/askeladd123/betadev-developed-development.net
- Navigate to the project directory:
cd betadev-developed-development
- Switch to the dockerizing branch:
git checkout dockerizing
- Build and start the Docker containers:
docker compose up --build
- Start the development application:
docker compose up
- Start the production application:
docker compose -f compose.yaml -f compose-prod.yaml up
- Access the application at localhost
- Stop the application
docker compose down
- To view running containers:
docker compose ps
- To rebuild containers:
docker compose up --build