Je viens de créer un fichier Docker très simple dans mon terminal, en gros, j'ai fait ce qui suit:
mkdir pgrouted
cd pgrouted
touch Dockerfile
Maintenant, j'ouvre le fichier Docker dans l' éditeur nano et j'ajoute les commandes suivantes au fichier Docker:
FROM ubuntu
MAINTAINER Gautam <[email protected]>
LABEL Description="pgrouting excercise" Vendor="skanatek" Version="1.0"
ENV BBOX="-122.8,45.4,-122.5,45.6"
# Add pgRouting launchpad repository
RUN sudo apt-add-repository -y ppa:ubuntugis/ppa
RUN sudo apt-add-repository -y ppa:georepublic/pgrouting
RUN sudo apt-get update
# Install pgRouting package (for Ubuntu 14.04)
RUN sudo apt-get install postgresql-9.3-pgrouting
# Install osm2pgrouting package
RUN sudo apt-get install osm2pgrouting
# Install workshop material (optional, but maybe slightly outdated)
RUN sudo apt-get install pgrouting-workshop
# For workshops at conferences and events:
# Download and install from http://trac.osgeo.org/osgeo/wiki/Live_GIS_Workshop_Install
RUN wget --no-check-certificate https://launchpad.net/~georepublic/+archive/pgrouting/+files/pgrouting-workshop_2.0.6-ppa1_all.deb
RUN sudo dpkg -i pgrouting-workshop_2.0.6-ppa1_all.deb
# Review: Not sure weather this should be in the dockerfile
RUN cp -R /usr/share/pgrouting/workshop ~/Desktop/pgrouting-workshop
# Log in as user "user"
RUN psql -U postgres
# Create routing database
RUN CREATE DATABASE routing;
# Add PostGIS functions
RUN CREATE EXTENSION postgis;
# Add pgRouting core functions
CREATE EXTENSION pgrouting;
# Download using Overpass XAPI (larger extracts possible than with default OSM API)
wget --progress=dot:mega -O "sampledata.osm" "http://www.overpass-api.de/api/xapi?*[bbox=${BBOX}][@meta]"
L'ensemble du Dockerfile peut être vu ICI en un coup d'œil.
Maintenant, quand j'essaye de construire le Dockerfile, comme ceci:
docker build -t gautam/pgrouted:v1 .
Le Dockerfile s'exécute et j'obtiens l'erreur ci-dessous:
Step 4 : RUN sudo apt-add-repository -y ppa:ubuntugis/ppa
---> Running in c93c3c5fd5e8
sudo: apt-add-repository: command not found
The command '/bin/sh -c sudo apt-add-repository -y ppa:ubuntugis/ppa' returned a non-zero code: 1
Pourquoi ai-je cette erreur?
pt-get install software-properties-common
comme premièreRUN pt-get install software-properties-common
commande, comme ça, maintenant j'obtiens cette erreur chopapp.com/#8a4vdsnwpython-software-properties
soitsoftware-properties-common
apt-get update && apt-get install -y software-properties-common
. L'exécution de la mise à jour puis de l'installation ne semble pas fonctionner. Peut-être un bogue DockerAjoutez ces lignes avant d'exécuter la
apt-add-repository
commandela source
rm -rf /var/lib/apt/lists/*
?rm
annule les effets duapt-get update
. Il est inutile de stocker les métadonnées du package dans la couche conteneur. Si vous souhaitez plus tardapt-get install
des packages supplémentaires, vous devezapt-get update
quand même en faire un nouveau .