File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 3
3
# It depends on CLOUD PROVIDER we will choose options are: "aws", "gcp", "local"
4
4
#######################################
5
5
6
- # CLOUDPROVIDER=("aws", "gcp", "local")
6
+ # CLOUDPROVIDER=("aws", "gcp", "azure" or " local")
7
7
CLOUDPROVIDER=local
8
8
9
9
# AWS
10
10
AWS_ACCESS_KEY_ID=xxx.xxx
11
11
AWS_SECRET_ACCESS_KEY=yyy.yy
12
- AWS_S3_BUCKET=s3:// osmseed-staging
12
+ AWS_S3_BUCKET=osmseed-staging
13
13
14
14
# GCP
15
- GCP_STORAGE_BUCKET=gs://osm-seed
15
+ GCP_STORAGE_BUCKET=osm-seed
16
+
17
+ # Azure
18
+ AZURE_STORAGE_ACCOUNT=osmseed
19
+ AZURE_STORAGE_ACCESS_KEY=xyz..
20
+ AZURE_STORAGE_CONNECT_STRING=abc..
21
+ AZURE_CONTAINER_NAME=osm-seed
Original file line number Diff line number Diff line change @@ -60,9 +60,14 @@ RUN apt-get install -y \
60
60
61
61
RUN pip install osmium
62
62
63
- # Install AWS and GCP cli
63
+ # Install AWS CLI
64
64
RUN pip install awscli
65
+
66
+ # Install GCP CLI
65
67
RUN curl -sSL https://sdk.cloud.google.com | bash
66
68
RUN ln -f -s /root/google-cloud-sdk/bin/gsutil /usr/bin/gsutil
67
69
70
+ # Install Azure CLI
71
+ RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
72
+
68
73
WORKDIR $workdir
You can’t perform that action at this time.
0 commit comments