mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
initial cleanup server-manager
This commit is contained in:
2
roles/docker-yourls/meta/main.yml
Normal file
2
roles/docker-yourls/meta/main.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
dependencies:
|
||||
- native-nginx-docker-proxy
|
39
roles/docker-yourls/tasks/main.yml
Normal file
39
roles/docker-yourls/tasks/main.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
- name: recieve {{domain}} certificate
|
||||
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{domain}}
|
||||
|
||||
- name: configure {{domain}}.conf
|
||||
template: src=roles/native-nginx-docker-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
|
||||
notify: restart nginx
|
||||
|
||||
- name: "setup yourls"
|
||||
docker_compose:
|
||||
project_name: yourls
|
||||
definition:
|
||||
application:
|
||||
image: yourls
|
||||
restart: always
|
||||
ports:
|
||||
- "{{http_port}}:80"
|
||||
environment:
|
||||
YOURLS_DB_HOST: "database:3306"
|
||||
YOURLS_DB_USER: "yourls"
|
||||
YOURLS_DB_PASS: "{{yourls_database_password}}"
|
||||
YOURLS_DB_NAME: "yourls"
|
||||
YOURLS_SITE: "https://{{domain}}"
|
||||
YOURLS_USER: "{{yourls_user}}"
|
||||
YOURLS_PASS: "{{yourls_user_password}}"
|
||||
links:
|
||||
- database
|
||||
database:
|
||||
image: mariadb
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_DATABASE: "yourls"
|
||||
MYSQL_USER: "yourls"
|
||||
MYSQL_PASSWORD: "{{yourls_database_password}}"
|
||||
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
|
||||
volumes:
|
||||
- yourls-database:/var/lib/mysql
|
||||
expose:
|
||||
- "3306"
|
Reference in New Issue
Block a user