Clean up unused Docker image space

Clean up unused Docker image space

Tiempo de lectura: < 1 minuto Today we will learn how to free up disk space from unused images with Docker. Before cleaning the images, you can use the following command to see how much space can be freed: docker system df This command will display a summary of the space used by different Docker resource categories, such as images, containers, … Read more

Using Llama-2 with Python and ARM64 or AMD64 Environment in a Docker Compose Container.

Using Llama-2 with Python and ARM64 or AMD64 Environment in a Docker Compose Container.

Tiempo de lectura: 2 minutos Hello, today we are going to learn how to deploy llama-2 on a server with an ARM64 environment, such as an Ampere 1 offered by Oracle Cloud. It’s worth noting that it’s also compatible with AMD64. The program in question is called LlaMA C++ and is available for multiple environments: In our case, we are … Read more

Blocks IPs using Nginx Proxy Manager

Blocks IPs using Nginx Proxy Manager

Tiempo de lectura: 2 minutos Hello, today we are going to learn how to block IPs, for example, Bots on the internet using Nginx Proxy Manager. Nginx Proxy Manager is a graphical interface that simplifies the management of proxy servers and the configuration of Nginx. Through this interface, you can set up blocking rules for specific IP addresses. To configure … Read more

Fixing POST Content-Length Exceeds Bytes Issue in PHP when Uploading a MySQL Backup with Docker PHPMyAdmin

Fixing POST Content-Length Exceeds Bytes Issue in PHP when Uploading a MySQL Backup with Docker PHPMyAdmin

Tiempo de lectura: < 1 minuto Here’s the content translated into English and formatted in HTML: html Copy code Reading Time: < 1 minute Hello, today we are going to solve the problem “Warning: POST Content–Length of X bytes exceeds the limit of X bytes in Unknown on line 0″ that prevents us from uploading .sql copies to our PHPMyAdmin. In … Read more

Backup MySQL or MariaDB with Ofelia (cron) and Docker.

Backup MySQL or MariaDB with Ofelia (cron) and Docker.

Tiempo de lectura: 2 minutos Sure! Here’s the translated content in HTML format without any additional text: html Copy code Reading time: 2 minutes Hello, today we are going to learn how we can create a backup of MySQL or MariaDB using Ofelia to schedule cron tasks with Docker or Docker Compose. The first thing we are going to do … Read more

Automate a Task with Ofelia Cron in Docker and FastAPI

Automate a Task with Ofelia Cron in Docker and FastAPI

Tiempo de lectura: < 1 minuto Reading Time: 1 minute Hello, today we are going to learn how to automate a task using Ofelia, FastAPI, and SQLAlchemy. The first thing we are going to do is create the file that we want to execute with Ofelia’s Cron: cron_execute.py # Create or get db_session from crud.operations_crud import operacion_crud_generar_estadisticas from config.connection import get_db … Read more

Install Llama 2, Meta’s Open Source and Commercializable AI that Competes with Chat GPT for Use with Python and Docker (with GPU Access)

Install Llama 2, Meta’s Open Source and Commercializable AI that Competes with Chat GPT for Use with Python and Docker (with GPU Access)

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello, today we are going to see how we can install and download llama 2, the AI from Meta that competes with chatgpt 3.5. To do this, I have created a Docker Compose that will help us set up the environment. The first thing we need to do is go to … Read more

Install Llama 2, the Meta Open Source and Commercializable AI that competes with Chat GPT for use with Python and Docker (with GPU access)

Install Llama 2, the Meta Open Source and Commercializable AI that competes with Chat GPT for use with Python and Docker (with GPU access)

Tiempo de lectura: 3 minutos Hello, today we will see how we can install and download llama 2, the Meta AI that competes with chatgpt 3.5. For this, I have created a Docker Compose that will help us set up the environment. The first thing we need to do is go to the llama 2 page and request a version … Read more

Flutter en contenedor Docker Compose para ejecutar en navegador web

Flutter en contenedor Docker Compose para ejecutar en navegador web

Tiempo de lectura: 3 minutos Reading Time: < 1 minute Hello, today we are going to see how we can use Docker Compose to run Flutter in the web browser of the host machine where Docker is running. The first thing we are going to do is create the docker-compose.yml file and add the following content: version: "3.1" services: flutter: ... Read more

Docker Compose Container for Running Flutter on ARM64

Docker Compose Container for Running Flutter on ARM64

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Hello, today we are going to see how we can run the Flutter environment on an ARM64 processor using Docker Compose. First, let’s create a docker-compose.yml: version: "3.1" services: flutter: build: context: ./Dockerfile dockerfile: flutter_arm restart: unless-stopped container_name: flutter volumes: - ./app_path:/home/mobiledevops/app networks: - docker-network networks: docker-network: driver: bridge external: ... Read more