2022-01-21 22:48:34 +00:00
|
|
|
---
|
|
|
|
- hosts: leftcoastlab
|
|
|
|
become: yes
|
|
|
|
vars:
|
|
|
|
GITEA_VOLUME: gitea-volume
|
|
|
|
tasks:
|
|
|
|
- name: Import Vars required for configuration
|
|
|
|
include_vars:
|
|
|
|
dir: ../vars
|
|
|
|
|
|
|
|
- name: Create Gitea Volume
|
|
|
|
community.docker.docker_volume:
|
|
|
|
name: "{{GITEA_VOLUME}}"
|
|
|
|
|
|
|
|
- name: Update/Install Git Tea Container Service
|
|
|
|
community.docker.docker_container:
|
|
|
|
name: gitea
|
|
|
|
image: gitea/gitea
|
|
|
|
pull: yes
|
|
|
|
restart_policy: always
|
|
|
|
recreate: yes
|
|
|
|
volumes:
|
|
|
|
- "{{GITEA_VOLUME}}:/data"
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
ports:
|
|
|
|
- "{{GITEA_PUB_PORT}}:3000"
|
|
|
|
- "{{GITEA_SSH_PORT}}:22"
|
2022-04-15 05:36:59 +00:00
|
|
|
log_driver: loki
|
|
|
|
log_options:
|
|
|
|
loki-url: "http://localhost:{{LOKI_PORT}}/loki/api/v1/push"
|
2022-01-21 22:48:34 +00:00
|
|
|
|
|
|
|
|