# Build and install a docker image for horizon. --- - include: ../common/tasks/docker.yml - name: Make build and persistent directories file: path: "{{ item }}" state: directory mode: 0777 with_items: - /srv/horizon - name: install service file. template: src: templates/horizon.service dest: /etc/systemd/system/horizon.service mode: 644 owner: root group: root - command: systemctl daemon-reload - name: make sure service is started systemd: name: horizon.service state: restarted