diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-01-04 01:40:27 -0500 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-01-04 01:40:27 -0500 |
| commit | fdd85fb7355d43cf185d79d1f35de9d7d647e0c5 (patch) | |
| tree | fe8c902bdc774267f69a0914736e1be2695ff309 /roles/authelia/templates | |
| parent | e67eff6accda5ca38b558ebf0f799993d0f3aaee (diff) | |
| download | oldinfra-fdd85fb7355d43cf185d79d1f35de9d7d647e0c5.tar.gz oldinfra-fdd85fb7355d43cf185d79d1f35de9d7d647e0c5.zip | |
add sso login
Diffstat (limited to 'roles/authelia/templates')
| -rw-r--r-- | roles/authelia/templates/docker-compose.yml.j2 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/authelia/templates/docker-compose.yml.j2 b/roles/authelia/templates/docker-compose.yml.j2 new file mode 100644 index 0000000..b60545f --- /dev/null +++ b/roles/authelia/templates/docker-compose.yml.j2 @@ -0,0 +1,17 @@ +version: '3.3' + +services: + authelia: + image: authelia/authelia + container_name: authelia + volumes: + - ./authelia:/config + ports: + - 9091:9091 + restart: unless-stopped + redis: + image: redis:alpine + container_name: redis + volumes: + - ./redis:/data + restart: unless-stopped |
