Commit 80202afb75ca60f7500d32aa32bc8890f84bfeb6
1 parent
5902d66d
Exists in
master
start traducing dockerfile
Showing
2 changed files
with
2 additions
and
14 deletions
Show diff stats
dachs-dockerfile
@@ -8,11 +8,6 @@ ARG INSTITUTION | @@ -8,11 +8,6 @@ ARG INSTITUTION | ||
8 | ARG HOMEPATH=/home/dachsroot | 8 | ARG HOMEPATH=/home/dachsroot |
9 | 9 | ||
10 | 10 | ||
11 | -### | ||
12 | -#install de la clé + depot Dachs | ||
13 | -# ajout de postgres en amont sinon l'install de dachs plante | ||
14 | -### | ||
15 | - | ||
16 | RUN apt-get -y update | 11 | RUN apt-get -y update |
17 | RUN apt-get -y upgrade | 12 | RUN apt-get -y upgrade |
18 | RUN apt-get install -y curl apt-utils | 13 | RUN apt-get install -y curl apt-utils |
@@ -23,7 +18,7 @@ RUN echo "deb http://vo.ari.uni-heidelberg.de/debian release main" > /etc/apt/so | @@ -23,7 +18,7 @@ RUN echo "deb http://vo.ari.uni-heidelberg.de/debian release main" > /etc/apt/so | ||
23 | 18 | ||
24 | 19 | ||
25 | ### | 20 | ### |
26 | -# Configuration du serveur | 21 | +# Server Configuration |
27 | ### | 22 | ### |
28 | 23 | ||
29 | RUN apt-get -y update | 24 | RUN apt-get -y update |
@@ -105,7 +100,3 @@ RUN echo "tail -f /dev/null" >> /usr/bin/docker-entrypoint.sh | @@ -105,7 +100,3 @@ RUN echo "tail -f /dev/null" >> /usr/bin/docker-entrypoint.sh | ||
105 | 100 | ||
106 | ENTRYPOINT /usr/bin/docker-entrypoint.sh && tail -f /dev/null | 101 | ENTRYPOINT /usr/bin/docker-entrypoint.sh && tail -f /dev/null |
107 | 102 | ||
108 | -#ajout de clé ssh notamment pour les depots git--> clé privé danger | ||
109 | -#vérifier les sub | ||
110 | -#permettre l'acces ssh au moins au docker (hyperviseur aussi ?) | ||
111 | -#faire un script maj |
docker-compose.yml
@@ -20,10 +20,7 @@ services: | @@ -20,10 +20,7 @@ services: | ||
20 | args: | 20 | args: |
21 | - "VERSION=${VERSION}" | 21 | - "VERSION=${VERSION}" |
22 | - "INSTITUTION=${INSTITUTION}" | 22 | - "INSTITUTION=${INSTITUTION}" |
23 | - - "SERVER=${SERVER}" | 23 | + - "SERVER=${SERVER}" |
24 | # example if you need to mount volumes (e.g if your service needs to parse files or if you want to upload it through dachs) | 24 | # example if you need to mount volumes (e.g if your service needs to parse files or if you want to upload it through dachs) |
25 | # volumes: | 25 | # volumes: |
26 | # - ./data:/home/dachsroot/data | 26 | # - ./data:/home/dachsroot/data |
27 | - | ||
28 | - | ||
29 | - |