Basic Traefik Setup
This commit is contained in:
16
roles/traefik/tasks/main.yml
Normal file
16
roles/traefik/tasks/main.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
- name: Install Traefik Configuration
|
||||
copy:
|
||||
src: traefik.yml
|
||||
dest: traefik.yml
|
||||
|
||||
- name: Start Traefik container
|
||||
docker_container:
|
||||
name: traefik
|
||||
image: traefik:2.0.2
|
||||
restart_policy: always
|
||||
ports:
|
||||
- 8000:80
|
||||
- 8080:8080
|
||||
volumes:
|
||||
- ./traefik.yml:/etc/traefik/traefik.yml
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
8
roles/traefik/traefik.yml
Normal file
8
roles/traefik/traefik.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
# Docker configuration backend
|
||||
providers:
|
||||
docker:
|
||||
defaultRule: "Host(`{{ trimPrefix `/` .Name }}.docker.localhost`)"
|
||||
|
||||
# API and dashboard configuration
|
||||
api:
|
||||
insecure: true
|
Reference in New Issue
Block a user