Commit fbe9f718351a3108af174a37568d23b95a564030
1 parent
9c62ee54
Exists in
master
and in
1 other branch
Configuração do terminal a ser utilizado nos containers
Showing
1 changed file
with
5 additions
and
1 deletions
Show diff stats
Dockerfile
... | ... | @@ -109,10 +109,14 @@ RUN service solr start && sleep 20 && \ |
109 | 109 | curl 'http://localhost:8983/solr/admin/cores?action=RELOAD&core=sei-publicacoes' |
110 | 110 | |
111 | 111 | ##################### FIM DA INSTALACAO ##################### |
112 | + | |
113 | +# Definição do terminal a ser utilizado | |
114 | +ENV TERM xterm | |
115 | + | |
112 | 116 | WORKDIR /opt/solr/example |
113 | 117 | |
114 | 118 | # Exposição da porta de conexão ao Apache |
115 | 119 | EXPOSE 8983 |
116 | 120 | |
117 | 121 | # Inicialização dos serviços Apache e Memcache |
118 | -CMD ["java", "-jar", "start.jar"] | |
119 | 122 | \ No newline at end of file |
123 | +CMD ["java", "-jar", "start.jar"] | ... | ... |