added service chatpad

This commit is contained in:
2023-06-03 00:06:36 +02:00
parent 577f859930
commit d3ea0dd111
2 changed files with 24 additions and 1 deletions

View File

@@ -70,3 +70,10 @@
roles:
- gitea
tags: gitea
- name: Configure Chatpad
hosts: chatpad_hosts
become: true
roles:
- chatpad
tags: chatpad

View File

@@ -0,0 +1,16 @@
---
- name: Create docker network 'proxy'
community.docker.docker_network:
name: proxy
- name: Create Chatpad Container
community.docker.docker_container:
name: chatpad
image: 'ghcr.io/deiucanta/chatpad:latest'
pull: yes
state: started
restart_policy: unless-stopped
ports:
- '11005:80'
networks:
- name: proxy