Initial setup of renovate bot

This commit is contained in:
Mike Wilson
2023-02-23 14:32:18 -05:00
parent 59c18a245d
commit fe00fcd29f
7 changed files with 90 additions and 2 deletions

View File

@@ -2,6 +2,10 @@
community.docker.docker_network:
name: traefik
- name: Create docker network for Docker Socket Proxy
community.docker.docker_network:
name: docker-socket-proxy
- name: Create install directory
file:
path: "{{ install_directory }}/traefik"

View File

@@ -4,14 +4,15 @@ networks:
traefik:
external: true
docker-socket-proxy:
external: false
external: true
services:
traefik:
container_name: traefik
image: traefik:v2.9
depends_on:
- docker_socket_proxy
docker_socket_proxy:
condition: service_healthy
networks:
- traefik
- docker-socket-proxy
@@ -30,6 +31,7 @@ services:
traefik.http.routers.traefik-dashboard.middlewares: lan-whitelist@file
docker_socket_proxy:
container_name: docker_socket_proxy
image: tecnativa/docker-socket-proxy:latest
restart: unless-stopped
networks:
@@ -40,3 +42,6 @@ services:
- INFO=1
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
healthcheck:
test: "exit 0"
start_period: 5s