26 lines
694 B
Django/Jinja
26 lines
694 B
Django/Jinja
version: '3'
|
|
|
|
# Generated by ansible for site {{ item.url }}
|
|
# At {{ item.subnet_site_ip }} on {{ item.subnet_cidr_address }}
|
|
|
|
services:
|
|
wp:
|
|
build: .
|
|
restart: always
|
|
environment:
|
|
WORDPRESS_DB_HOST: "{{ item.subnet_gateway_ip }}"
|
|
WORDPRESS_DB_USER: "{{ item.mysql_username }}"
|
|
WORDPRESS_DB_PASSWORD: "{{ item.mysql_password }}"
|
|
WORDPRESS_DB_NAME: "{{ item.mysql_database }}"
|
|
volumes:
|
|
- "{{ www_path }}/{{ item.slug }}_wp-content:/var/www/html/wp-content"
|
|
networks:
|
|
net:
|
|
ipv4_address: "{{ item.subnet_site_ip }}"
|
|
|
|
networks:
|
|
net:
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: "{{ item.subnet_cidr_address }}"
|