31 lines
731 B
YAML
31 lines
731 B
YAML
|
---
|
||
|
- 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"
|
||
|
|
||
|
|