add all services that have no secret stuff

This commit is contained in:
2022-07-18 19:01:37 +02:00
parent fb6bed8bb0
commit 8dfe5d3587
20 changed files with 622 additions and 0 deletions

View File

@ -0,0 +1,40 @@
---
version: '3.2'
services:
cadvisor:
image: gcr.io/cadvisor/cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
ports:
- 4194:8080
restart: always
networks:
- matrix
element:
image: vectorim/element-web:latest
restart: unless-stopped
ports:
- "127.0.0.1:8181:80"
volumes:
- ./element-config.json:/app/config.json
networks:
- matrix
synapse:
image: matrixdotorg/synapse:latest
restart: unless-stopped
networks:
- matrix
volumes:
- ./synapse:/data
ports:
- "127.0.0.1:8080:8080"
networks:
matrix:
external: false
...

View File

@ -0,0 +1,9 @@
---
- name: Copy docker-compose configuration
ansible.builtin.copy:
src: docker-compose.yaml
dest: /home/service-user/docker-compose.yaml
owner: service-user
group: service-user
mode: '0644'
...