This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: GitHub <[email protected]>
- Loading branch information
Showing
2 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
## Desarrollo del backend | ||
|
||
[Información importante a la hora de crear controladores](https://github.com/us-ferferga/PGPI-Grupo3.2/blob/master/backend/TraineerbookApp/views.py#L21-L57) | ||
|
||
## Ejecución del contenedor | ||
|
||
Dado un archivo tar.gz, hay que cargar la imagen en el sistema (se asume sistema Linux): | ||
|
||
``` | ||
docker load < imagen.tar.gz | ||
``` | ||
|
||
Para ponerla en funcionamiento: | ||
|
||
``` | ||
docker run [...parámetros] traineerbook | ||
``` | ||
|
||
Si se usa la imagen subida al repositorio y no un ``tar.gz``, | ||
reemplazar por ``ghcr.io/us-ferferga/traineerbook`` | ||
|
||
--- | ||
|
||
Para hacer que el servicio esté disponible en el host, | ||
añadir el siguiente parámetro: | ||
|
||
``` | ||
-p PUERTO_DESEADO:80 | ||
``` | ||
|
||
--- | ||
|
||
Para persistir la información cuando se detenga el contenedor, | ||
se debe de montar la carpeta /data del contenedor. Añadir: | ||
|
||
``` | ||
-v ./datos:/data | ||
``` | ||
Esto creará una carpeta ``datos`` en el directorio actual en el que se encuentre la terminal. | ||
**Es importante que en la primera ejecución este directorio esté vacío o los datos de prueba no | ||
se cargarán correctamente** | ||
|
||
--- | ||
|
||
Se puede personalizar el *username* y el *email* del superadministrador. Estos son los valores | ||
por defecto | ||
|
||
``` | ||
-e ADMIN_USER=root -e [email protected] | ||
``` |