14 lines
430 B
YAML
14 lines
430 B
YAML
|
# vim:ft=ansible:
|
||
|
- name: docker deploy nextcloud shim
|
||
|
docker_container:
|
||
|
# NOTE: We depend on the default configuration of Apache here, specifically
|
||
|
# the default to have server-generated indexes. Makes srv easier to navigate
|
||
|
name: srv
|
||
|
image: httpd:latest
|
||
|
networks:
|
||
|
- name: web
|
||
|
aliases: [ "srv" ]
|
||
|
volumes:
|
||
|
- /var/www/srv.9iron.club:/usr/local/apache2/htdocs
|
||
|
tags: [ docker, 9iron ]
|