-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-docker.sh
26 lines (24 loc) · 1.45 KB
/
update-docker.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# **************************************************************************** #
# #
# ::: :::::::: #
# update-docker.sh :+: :+: :+: #
# +:+ +:+ +:+ #
# By: fgalaup <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/20 11:28:39 by fgalaup #+# #+# #
# Updated: 2021/01/15 12:42:14 by fgalaup ### ########lyon.fr #
# #
# **************************************************************************** #
#!/bin/sh
if minikube status > /dev/null 2>&1
then
eval $(minikube docker-env);
docker image build --tag ft_nginx:1.0 ./srcs/Docker/Nginx/
docker image build --tag ft_mysql:1.0 ./srcs/Docker/MySQL/
docker image build --tag ft_phpmyadmin:1.0 ./srcs/Docker/PHPMyAdmin/
docker image build --tag ft_wordpress:1.0 ./srcs/Docker/WordPress/
docker image build --tag ft_ftps:1.0 ./srcs/Docker/FTPS/
docker image build --tag ft_influxdb:1.0 ./srcs/Docker/InfluxDB/
docker image build --tag ft_grafana:1.0 ./srcs/Docker/Grafana/
docker image build --tag ft_telegraf:1.0 ./srcs/Docker/Telegraf/
fi