Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
myitinos
/
HackTheGame-v002
forkeado de
myitinos/HackTheGame-v001
Seguir
1
Destacar
0
Fork
1
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Merge branch 'master' of soekarmana/HackTheGame-v002 into master
master
myitinos
hace 5 años
cometido por
Gitea
padre
280a9015d6
cc87ffd3cc
commit
93c58ff6ce
Se han
modificado 2 ficheros
con
24 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+10
-0
.drone.yml
+14
-0
build-image.sh
+ 10
- 0
.drone.yml
Ver fichero
@ -0,0 +1,10 @@
pipeline:
build-docker:
image
:
docker:18.06.1-ce
volumes:
-
/var/run/docker.sock:/var/run/docker.sock
commands:
-
chmod +x ./build-image.sh
-
./build-image.sh
when:
event
:
[
push]
+ 14
- 0
build-image.sh
Ver fichero
@ -0,0 +1,14 @@
#!/bin/sh
set
-e
set
-o xtrace
IMAGE_NAME
=
HackTheGame-v002
# clean old images
OLD_IMAGES
=
$(
docker images
$IMAGE_NAME
-q --no-trunc
)
if
[
-n
"
${
OLD_IMAGES
}
"
]
;
then
docker rmi -f
${
OLD_IMAGES
}
;
fi
#Build Images
docker build . -t
$IMAGE_NAME
Escribir
Vista previa
Cargando…
Cancelar
Guardar