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

Install Docker and Docker Compose on Oracle Linux

Install Docker and Docker Compose on Oracle Linux

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Today we’re going to see how to install Docker and Docker Compose on Oracle Linux. The first thing we’re going to do is update the system: sudo yum check-update Then we add the Docker repository: dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo Now we install Docker: dnf install docker-ce -y And it will start ... Read more

Portainer to manage your Docker containers

Portainer to manage your Docker containers

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Hello, today we are going to see how we can install Portainer for our Docker projects. Portainer is a container management platform that provides a graphical user interface (GUI) for managing and monitoring container environments. It allows users to easily manage container clusters, create, start and stop containers, manage container images, … Read more

Watchtower to Automatically Update Your Docker Containers Using Docker Compose

Watchtower to Automatically Update Your Docker Containers Using Docker Compose

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello, today we are going to see how we can automatically update our Docker containers using Watchtower. Step 1: Installation of Docker and Docker Compose Before we begin, make sure you have Docker and Docker Compose installed on your system. You can follow the official Docker instructions to install these tools … Read more

Install Docker and Docker Compose on Raspberry Pi

Install Docker and Docker Compose on Raspberry Pi

Tiempo de lectura: < 1 minuto Reading time: 2 minutes Hello, today we are going to see how we can install Docker and Docker Compose on a Raspberry Pi. The first thing we need to do is run this command to update the OS resources: sudo apt update sudo apt upgrade First, we install these dependencies necessary to install the Docker … Read more

Install Photoprism to Store Photos like Google Photos on a Raspberry Pi with Docker Compose

Install Photoprism to Store Photos like Google Photos on a Raspberry Pi with Docker Compose

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello, today we are going to deploy a Photoprism Docker container to store images like Google Photos on a Raspberry Pi. The first thing we are going to do is create this docker-compose.yml file: version: ‘3.5’ services: photoprism: image: photoprism/photoprism:latest restart: unless-stopped security_opt: – seccomp:unconfined – apparmor:unconfined ports: – 8098:2342 environment: … Read more

Benotes: Container to Store Website Links or Bookmarks and Add Notes with Docker

Benotes: Container to Store Website Links or Bookmarks and Add Notes with Docker

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today we’re going to see how we can deploy a container to store notes or links to our interesting websites or projects. Based on benotes (https://github.com/fr0tt/benotes_docker-compose) The first thing we need to do is create this Docker Compose: version: “3.6” services: benotes_app: container_name: benotes_app image: fr0tt/benotes:2.7.0-beta restart: unless-stopped environment: DB_CONNECTION: ${DB_CONNECTION} … Read more