add: basic openvpn node setup

This commit is contained in:
2024-11-23 16:49:59 +00:00
parent f55138ee17
commit 2280224d37
6 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
version: '3'
services:
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:latest # Make sure the version of opensearch-dashboards matches the version of opensearch installed on other nodes
container_name: opensearch-dashboards
ports:
- 9400:5601 # Map host port 5601 to container port 5601
environment:
OPENSEARCH_HOSTS: '["https://atlantishq.de:9200","https://atlantishq.de:9201"]'
OPENSEARCH.USERNAME: "admin"
OPENSEARCH.PASSWORD: "{{ opensearch_admin_password }}"