diff options
Diffstat (limited to 'docker-playbook.yml')
-rw-r--r-- | docker-playbook.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker-playbook.yml b/docker-playbook.yml index 124c55d..be8472b 100644 --- a/docker-playbook.yml +++ b/docker-playbook.yml @@ -6,7 +6,7 @@ - include_vars: file: docker-vars.yml - name: Create a front container to be provisioned later - tags: docker-front + tags: wiki hosts: localhost tasks: - name: create docker container @@ -14,13 +14,13 @@ name: emacsconf-front image: python:3-buster command: ["sleep", "1d"] - pull: yes + volumes: "{{ ikiwiki_git_source }}:{{ ikiwiki_git_source_mount }}" published_ports: - "28080:80" - "2022:22" - name: Provision the emacsconf-front container created above - tags: docker-front + tags: wiki hosts: emacsconf-front roles: - wiki |