Skip to content

Commit

Permalink
Stepup dockers: Fix logo location
Browse files Browse the repository at this point in the history
  • Loading branch information
quartje committed Mar 1, 2024
1 parent d93fabc commit 0fe7223
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
10 changes: 4 additions & 6 deletions roles/stepupazuremfa/tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@
mode: "0640"
owner: root
group: "{{ appname }}"
notify:
restart azuremfa
notify: restart azuremfa

- name: Put institutions.yaml from environment
ansible.builtin.template:
Expand All @@ -53,8 +52,7 @@
mode: "0640"
owner: root
group: "{{ appname }}"
notify:
restart azuremfa
notify: restart azuremfa

- name: Create the container
community.docker.docker_container:
Expand All @@ -72,8 +70,8 @@
APACHE_UID: "#{{ azuremfa_uid.uid }}"
APACHE_GUID: "#{{ azuremfa_guid.gid }}"
mounts:
- source: /opt/openconext/azuremfa/public/images/
target: /var/www/html/public/images/
- source: /opt/openconext/azuremfa/public/images/header-logo.png
target: /var/www/html/public/build/images/header-logo.png
type: bind
- source: /opt/openconext/azuremfa
target: /var/www/html/config/openconext
Expand Down
2 changes: 1 addition & 1 deletion roles/stepupselfservice/tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
APP_ENV: prod
mounts:
- source: /opt/openconext/selfservice/public/images/header-logo.png
target: /var/www/html/public/images/header-logo.png
target: /var/www/html/public/build/images/logo/header-logo.png
type: bind
- source: /opt/openconext/selfservice
target: /var/www/html/config/openconext
Expand Down
2 changes: 1 addition & 1 deletion roles/stepuptiqr/tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
APP_ENV: prod
mounts:
- source: /opt/openconext/tiqr/public/images/header-logo.png
target: /var/www/html/public/images/header-logo.png
target: /var/www/html/public/build/images/logo/header-logo.png
type: bind
- source: /opt/openconext/tiqr
target: /var/www/html/config/openconext
Expand Down
9 changes: 4 additions & 5 deletions roles/stepupwebauthn/tasks/docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- name: Include docker vars
- name: Include docker vars
ansible.builtin.include_vars: docker.yml

- name: Add group {{ appname }}
Expand Down Expand Up @@ -52,8 +52,7 @@
mode: "0640"
owner: root
group: "{{ appname }}"
notify:
restart webauthn
notify: restart webauthn

- name: Copy trusted certificates
ansible.builtin.copy:
Expand Down Expand Up @@ -89,8 +88,8 @@
APACHE_UID: "#{{ webauthn_uid.uid }}"
APACHE_GUID: "#{{ webauthn_guid.gid }}"
mounts:
- source: /opt/openconext/webauthn/public/images/
target: /var/www/html/public/images/
- source: /opt/openconext/webauthn/public/images/header-logo.png
target: /var/www/html/public/build/images/logo/header-logo.png
type: bind
- source: /opt/openconext/webauthn
target: /var/www/html/config/openconext
Expand Down

0 comments on commit 0fe7223

Please sign in to comment.