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 | 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 | 11 | RUN apt-get -y update |
17 | 12 | RUN apt-get -y upgrade |
18 | 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 | 18 | |
24 | 19 | |
25 | 20 | ### |
26 | -# Configuration du serveur | |
21 | +# Server Configuration | |
27 | 22 | ### |
28 | 23 | |
29 | 24 | RUN apt-get -y update |
... | ... | @@ -105,7 +100,3 @@ RUN echo "tail -f /dev/null" >> /usr/bin/docker-entrypoint.sh |
105 | 100 | |
106 | 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 | 20 | args: |
21 | 21 | - "VERSION=${VERSION}" |
22 | 22 | - "INSTITUTION=${INSTITUTION}" |
23 | - - "SERVER=${SERVER}" | |
23 | + - "SERVER=${SERVER}" | |
24 | 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 | 25 | # volumes: |
26 | 26 | # - ./data:/home/dachsroot/data |
27 | - | |
28 | - | |
29 | - | ... | ... |