first cosmoserver commit

This commit is contained in:
2026-03-21 21:20:00 -07:00
parent 7c29cbdab5
commit 324eaff135
14 changed files with 1019 additions and 423 deletions

View File

@ -3,6 +3,11 @@
# This part sets up cosmostat web dashboard
###############################################
- name: Cosmostat - Web - stop containers
when: not quick_refresh | bool
shell: "docker-compose -f {{ service_control_web_folder }}/docker-compose.yaml down"
ignore_errors: yes
# Create web Folder
- name: "Cosmostat - Web - create {{ service_control_web_folder }}"
file:
@ -31,6 +36,6 @@
register: docker_output
- debug: |
msg="{{ docker_output.stdout_lines }}"
msg="{{ docker_output.stderr_lines }}"
msg="{{ docker_output.stderr_lines }}"
...