sync for dev 033026

This commit is contained in:
2026-03-30 19:59:39 -07:00
parent ba849b150c
commit 36917ffa39
18 changed files with 317 additions and 84 deletions

View File

@ -34,12 +34,11 @@ services:
- "{{ docker_gateway }}:8080:80"
volumes:
- ./html:/var/www/html/
- "{{ api_service_folder }}/cosmostat_settings.yaml:/opt/api_settings/cosmostat_settings.yaml:ro"
- "{{ api_service_folder }}/cosmostat_settings.yaml:/app/cosmostat_settings.yaml:ro"
networks:
- cosmostat_net
restart: always
# public_dashboard: {{ public_dashboard }}
cosmostat_nginx_proxy:
container_name: cosmostat_nginx_proxy
image: nginx:latest

View File

@ -0,0 +1,35 @@
services:
# cosmostat:
# container_name: cosmostat
# build:
# context: .
# dockerfile: Dockerfile
# ports:
# - "{{ docker_gateway }}:6379:6379"
# - "{{ (docker_gateway + ':') if not public_dashboard | bool else '' }}{{ custom_port }}:80"
# networks:
# - cosmostat_net
# restart: always
cosmostat_all:
container_name: cosmostat_all
image: cosmostat-all:latest
restart: always
build:
context: .
dockerfile: Dockerfile
networks:
- cosmostat_net
ports:
- "{{ docker_gateway }}:6379:6379"
- "{{ (docker_gateway + ':') if not public_dashboard | bool else '' }}{{ custom_port }}:80"
volumes:
- "/opt/cosmostat/docker/web/html:/var/www/html"
- "/opt/cosmostat/docker/web/node_server:/app"
- "/opt/cosmostat/cosmostat_settings.yaml:/app/cosmostat_settings.yaml:ro"
networks:
cosmostat_net:
external: true

View File

@ -11,4 +11,4 @@ Restart=always
{{ extra_service_options }}
[Install]
WantedBy=multi-user.target
WantedBy=default.target