d4science-ghn-cluster/group_vars/sharelatex_app/sharelatex_app.yml: Use the 'docker_container' ansible module to run the sharelatex instance.

This commit is contained in:
Andrea Dell'Amico 2017-02-10 18:35:58 +01:00
parent 63837eac95
commit 95907e86dc
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@
when: not docker_run_as_docker_user
- name: Start the Sharelatex docker container as docker user
command: docker run -v {{ sharelatex_host_data_dir }}:{{ sharelatex_container_data_dir }} -p {{ sharelatex_container_public_port }}:{{ sharelatex_container_local_port }} --name={{ sharelatex_container_name }} --env-file {{ docker_user_home }}/sharelatex/sharelatex-env.sh {{ sharelatex_docker_image }}
#command: docker run -v {{ sharelatex_host_data_dir }}:{{ sharelatex_container_data_dir }} -p {{ sharelatex_container_public_port }}:{{ sharelatex_container_local_port }} --name={{ sharelatex_container_name }} --env-file {{ docker_user_home }}/sharelatex/sharelatex-env.sh {{ sharelatex_docker_image }}
docker_container: name={{ sharelatex_container_name }} volumes:{{ sharelatex_host_data_dir }}:{{ sharelatex_container_data_dir }} published_ports={{ sharelatex_container_public_port }}:{{ sharelatex_container_local_port }} env_file={{ docker_user_home }}/sharelatex/sharelatex-env.sh {{ sharelatex_docker_image }} state=started user=docker
when: docker_run_as_docker_user
- name: Start the Sharelatex docker container as root