From d28a31e1bcf8f2b1361a67efea7fc6e3e18a7915 Mon Sep 17 00:00:00 2001 From: Juan Felipe Zapata Moreno Date: Wed, 24 Sep 2025 09:05:46 -0600 Subject: [PATCH] .env example modificado --- .env.example | 4 ++-- docker-compose.yml | 1 + limpiar_docker.sh | 5 +++++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100755 limpiar_docker.sh diff --git a/.env.example b/.env.example index 94a2f7d..a258d80 100644 --- a/.env.example +++ b/.env.example @@ -1,10 +1,10 @@ -VITE_API_URL=http://backend.holos.test:8080 +VITE_API_URL=http://localhost:8080 VITE_BASE_URL=http://frontend.holos.test VITE_REVERB_APP_ID= VITE_REVERB_APP_KEY= VITE_REVERB_APP_SECRET= -VITE_REVERB_HOST="backend.holos.test" +VITE_REVERB_HOST="localhost" VITE_REVERB_PORT=8080 VITE_REVERB_SCHEME=http VITE_REVERB_ACTIVE=false diff --git a/docker-compose.yml b/docker-compose.yml index 050a3c6..25c89cd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,6 +10,7 @@ services: - frontend-v1:/var/www/gols-frontend-v1/node_modules networks: - gols-network + mem_limit: 512m volumes: frontend-v1: driver: local diff --git a/limpiar_docker.sh b/limpiar_docker.sh new file mode 100755 index 0000000..707fa4c --- /dev/null +++ b/limpiar_docker.sh @@ -0,0 +1,5 @@ +echo "eliminando imagenes no utilizadas..." + +docker image prune -a -f + +echo "¡Limpio!"