A chest system for organizing items typically refers to a method or physical arrangement of storage containers, such as chests, boxes, or drawers, used to categorize and store various items or belongings. This system is commonly employed in homes, businesses, and other environments to maintain order and facilitate easy access to stored items. Here are some key aspects of a chest system for organizing items:
-
Containers: The main components of the system are the storage containers themselves, which can include chests, cabinets, bins, drawers, shelves, and more. These containers can vary in size, material, and design to suit specific organizational needs.
-
Labeling: To enhance organization, it's essential to label the containers or compartments. You can use labels, tags, or even color-coding to quickly identify the contents of each storage space. This is especially helpful when dealing with a large number of items.
-
Categorization: Items are grouped together based on similarities, usage frequency, or any other criteria that make sense for your specific needs. For instance, you might have separate containers for kitchen utensils, clothing, office supplies, or tools.
Docker provides a install script. Just run:
curl -sSL https://get.docker.com | sh
By default, only users who have administrative privileges (root users) can run containers. You could also add your non-root user to the Docker group which will allow it to execute docker commands.
To add the current user to the Docker group run:
sudo usermod -aG docker ${USER}
- Port: '5050:80'
- Username: admin@admin.com
- Password: root
- VSC (Visual Studio Code)
- React/Next.js framework
- https://nextjs.org/docs/getting-started/installation
- created Main.py
- created docker-compose-dev
The dev-docker target will start the dev database and phpmyadmin and the dev server.
make dev-docker
make migrate-db
Now you can access the Docs at http://127.0.0.1:8000/api/docs
cd react-app
npm install
npm run dev # Linux/Mac
npm run dev-marcel # Windows
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
docker-compose -f docker-compose-dev.yaml up -d
alembic upgrade head
uvicorn 'main:app' --host=127.0.0.1 --port=8000 --reload
Now you can access the server at http://127.0.0.1:8000
alembic revision --autogenerate -m "Added account table"
alembic upgrade head
The Images need to be in a public registry for the minikube to be able to pull them.
docker buildx build --platform linux/amd64,linux/arm64 -t skyface753/chest-system-server -f Dockerfile . --push
docker buildx build --platform linux/amd64,linux/arm64 -t skyface753/chest-system-client -f my-app/Dockerfile ./my-app/ --push
docker buildx build --platform linux/amd64,linux/arm64 -t skyface753/chest-system-proxy -f proxy/Dockerfile ./proxy --push
export KUBECONFIG="$(pwd)/minikube-config.yaml"
minikube start
# Update the Kube-Files in kube/
kubectl apply -f ITLab-CC/kubernetes-collection/chest-system
minikube service proxy