mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
|
---
|
||
|
- name: recieve {{domain}} certificate
|
||
|
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{domain}}
|
||
|
|
||
|
- name: configure {{domain}} https
|
||
|
template: src=roles/native-nginx-docker-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
|
||
|
notify: restart nginx
|
||
|
|
||
|
- name: container present
|
||
|
docker_compose:
|
||
|
project_name: gitea
|
||
|
definition:
|
||
|
application:
|
||
|
restart: always
|
||
|
image: gitea/gitea:latest
|
||
|
environment:
|
||
|
- USER_UID=1000
|
||
|
- USER_GID=1000
|
||
|
- DB_TYPE=mysql
|
||
|
- DB_HOST=database:3306
|
||
|
- DB_NAME=gitea
|
||
|
- DB_USER=gitea
|
||
|
- DB_PASSWD={{gitea_database_password}}
|
||
|
- SSH_PORT={{ssh_port}}
|
||
|
- SSH_LISTEN_PORT=22
|
||
|
- DOMAIN={{domain}}
|
||
|
- SSH_DOMAIN={{domain}}
|
||
|
- RUN_MODE="{{run_mode}}"
|
||
|
ports:
|
||
|
- "{{http_port}}:3000"
|
||
|
- "{{ssh_port}}:22"
|
||
|
links:
|
||
|
- database
|
||
|
volumes:
|
||
|
- gitea-data:/data
|
||
|
- /etc/timezone:/etc/timezone:ro
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
database:
|
||
|
image: mariadb
|
||
|
environment:
|
||
|
MYSQL_DATABASE: "gitea"
|
||
|
MYSQL_USER: "gitea"
|
||
|
MYSQL_PASSWORD: "{{gitea_database_password}}"
|
||
|
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
|
||
|
volumes:
|
||
|
- gitea-database:/var/lib/mysql
|
||
|
restart: always
|
||
|
expose:
|
||
|
- "3306"
|