diff --git a/LyricsPy/K8S/lyrics-deployment.yaml b/LyricsPy/K8S/lyrics-deployment.yaml index e4fcc3a..3803e80 100644 --- a/LyricsPy/K8S/lyrics-deployment.yaml +++ b/LyricsPy/K8S/lyrics-deployment.yaml @@ -36,7 +36,7 @@ spec: - --bind - 0.0.0.0:5000 - lyrics:create_app() - image: creylopez/lyrics:5.3 + image: creylopez/lyrics:5.4 name: lyrics ports: - containerPort: 5000 diff --git a/LyricsPy/buildConComposeProd.sh b/LyricsPy/buildConComposeProd.sh deleted file mode 100644 index ea769dd..0000000 --- a/LyricsPy/buildConComposeProd.sh +++ /dev/null @@ -1,4 +0,0 @@ - -docker-compose -f docker-compose.prod.yml down -docker rmi lyricspy_lyrics -docker-compose -f docker-compose.prod.yml up -d --build diff --git a/LyricsPy/docker-compose.prod.yml b/LyricsPy/docker-compose.prod.yml deleted file mode 100644 index 3ae0061..0000000 --- a/LyricsPy/docker-compose.prod.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '2.2' - -services: - lyrics: - build: ./servicios - command: gunicorn --bind 0.0.0.0:5000 lyrics:create_app() - volumes: - - lyrics_prod:/instance - expose: - - 5000 -# env_file: -# - ./.env.prod - - nginx: - build: ./servicios/nginx - ports: - - 1338:80 - depends_on: - - lyrics - -volumes: - lyrics_prod: diff --git a/LyricsPy/index antes bulmajs.html b/LyricsPy/index antes bulmajs.html deleted file mode 100644 index f373e24..0000000 --- a/LyricsPy/index antes bulmajs.html +++ /dev/null @@ -1,88 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} -
| Pista | -Título | -Autor | -Álbum | -
|---|---|---|---|
| {{ song.pista }} | -{{ song.title }} | -{{ song.author }} | -{{ song.album.name }} | -
No songs found.
- {% endif %} -| Cover | -Nombre | -Artista | -Año | -
|---|---|---|---|
|
- {% if album.cover_image %}
- |
- {{ album.name }} | -{{ album.artist }} | -{{ album.year }} | -
No albums found.
- {% endif %} -