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:
49
roles/docker-gitea/tasks/main.yml
Normal file
49
roles/docker-gitea/tasks/main.yml
Normal file
@@ -0,0 +1,49 @@
|
||||
---
|
||||
- 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"
|
Reference in New Issue
Block a user