Files
homeserver.zernis.ch/roles/chatpad/tasks/main.yml
2023-06-03 00:06:36 +02:00

16 lines
359 B
YAML

---
- 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