- What is the title of this document?
"NSF Geo-Data Informatics: Exploring the Life Cycle, Citation and Integration of Geo-Data Workshop report 2011"
- Who produced it?
National Science Foundation
Some explanations:
from flask import Flask, render_template | |
import requests, json, os | |
app = Flask(__name__, template_folder='.') | |
@app.route('/') | |
def homepage(): | |
authtoken = open(os.environ['AUTHTOKEN'], 'r').readline().strip() |
#!/bin/sh | |
# write configs | |
# ============================================================================= | |
# config.php | |
# ============================================================================= | |
cat >/etc/phpldapadmin/config.php <<EOL | |
<?php | |
// map attribute names to user friendly names |
{ | |
"storage-driver": "devicemapper", | |
"storage-opts": [ | |
"dm.directlvm_device=/dev/xdf", | |
"dm.thinp_percent=95", | |
"dm.thinp_metapercent=1", | |
"dm.thinp_autoextend_threshold=80", | |
"dm.thinp_autoextend_percent=20", | |
"dm.directlvm_device_force=false" | |
] |
FROM ubuntu:16.04 | |
# install docker | |
RUN apt-get update | |
RUN apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | |
RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
RUN apt-get update | |
RUN apt-get install -y docker-ce |
{ | |
"storage-driver": "devicemapper", | |
"storage-opts": [ | |
"dm.directlvm_device=/dev/xvdb" | |
] | |
} |
version: '3.3' | |
services: | |
minio1: | |
image: training/minio:demo | |
volumes: | |
- minio1-data:/export | |
ports: | |
- "9001:9000" | |
networks: |
version: "3.1" | |
services: | |
database: | |
image: pets-db:1.0 | |
environment: | |
POSTGRES_USER: gordonuser | |
POSTGRES_DB: ddev | |
ports: | |
- "5432:5432" |
# Calico Version v3.1.1 | |
# reproduced from https://docs.projectcalico.org/v3.1/getting-started/kubernetes/installation/hosted/kubeadm/1.7/calico.yaml | |
# https://docs.projectcalico.org/v3.1/releases#v3.1.1 | |
# This manifest includes the following component versions: | |
# calico/node:v3.1.1 | |
# calico/cni:v3.1.1 | |
# calico/kube-controllers:v3.1.1 | |
# This ConfigMap is used to configure a self-hosted Calico installation. | |
kind: ConfigMap |