forked from amancevice/docker-superset
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
48 lines (34 loc) · 1.18 KB
/
Makefile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
EDITOR=vim
include /etc/os-release
install-prerequisites:
ifeq ("$(wildcard /usr/bin/docker)","")
@echo install docker-ce, still to be tested
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/${ID}/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb https://download.docker.com/linux/ubuntu \
`lsb_release -cs` \
stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
endif
download:
wget https://my.vertica.com/client_drivers/9.0.x/9.0.0-1/vertica-client-9.0.0-1.x86_64.tar.gz
network:
@docker network create latelier 2> /dev/null; true
build:
docker build --build-arg proxy=${http_proxy} -t superset .
init-db:
docker exec -it superset superset-init
up: network
docker-compose up -d
down:
docker-compose down
restart: down up