mirror of
https://git.local.zernis.ch/simon/homeserver.zernis.ch.git
synced 2025-12-15 21:09:40 +01:00
16 lines
359 B
YAML
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 |