Index: dbLearnStar-other/container_cas_example/config/cas.properties
===================================================================
--- dbLearnStar-other/container_cas_example/config/cas.properties	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
+++ dbLearnStar-other/container_cas_example/config/cas.properties	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
@@ -0,0 +1,2 @@
+cas.authn.accept.users=admin::adminpass,user1::pass1,user2::pass2
+#cas.service-registry.json.location=file:/etc/cas/services
Index: dbLearnStar-other/container_cas_example/docker-compose.yml
===================================================================
--- dbLearnStar-other/container_cas_example/docker-compose.yml	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
+++ dbLearnStar-other/container_cas_example/docker-compose.yml	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
@@ -0,0 +1,23 @@
+version: '3.8'
+
+networks:
+  samples:
+    driver: bridge
+
+services:
+  cas:
+    image: apereo/cas:6.6.6
+    container_name: cas
+    restart: always
+    ports:
+      - "8090:8080"
+    command: >
+      --cas.standalone.configuration-directory=/etc/cas/config
+      --server.ssl.enabled=false
+      --server.port=8080
+      --cas.service-registry.core.init-from-json=true
+      --cas.service-registry.json.location=file:/etc/cas/services
+    volumes:
+      - ./services/http-1.json:/etc/cas/services/http-1.json
+    networks:
+      - samples
Index: dbLearnStar-other/container_cas_example/services/http-1.json
===================================================================
--- dbLearnStar-other/container_cas_example/services/http-1.json	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
+++ dbLearnStar-other/container_cas_example/services/http-1.json	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
@@ -0,0 +1,8 @@
+{
+  "@class": "org.apereo.cas.services.CasRegisteredService",
+  "serviceId": "^(https?)://.*",
+  "name": "HTTP/HTTPS",
+  "id": 1,
+  "description": "This service definition authorizes all application urls that support HTTP and HTTPS protocols.",
+  "evaluationOrder": 10000
+}
Index: dbLearnStar-other/container_cas_example/webstart.sh
===================================================================
--- dbLearnStar-other/container_cas_example/webstart.sh	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
+++ dbLearnStar-other/container_cas_example/webstart.sh	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
@@ -0,0 +1,15 @@
+podman run \
+	--name docker_cas \
+	-v ./services:/etc/cas/services:Z \
+	-v ./config:/etc/cas/config:Z \
+	--rm \
+	-p 8080:8080 \
+	-d \
+	--name cas \
+	apereo/cas:6.6.7 \
+		--cas.standalone.configuration-directory=/etc/cas/config \
+		--server.ssl.enabled=false \
+		--server.port=8080 \
+		--management.server.port=10000 \
+		--cas.service-registry.core.init-from-json=true \
+		--cas.service-registry.json.location=file:/etc/cas/services
Index: dbLearnStar-other/container_maindb_example/dbstart.sh
===================================================================
--- dbLearnStar-other/container_maindb_example/dbstart.sh	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
+++ dbLearnStar-other/container_maindb_example/dbstart.sh	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
@@ -0,0 +1,10 @@
+podman run \
+	--cgroup-manager=cgroupfs  \
+	-d \
+	-e POSTGRES_USER=postgres \
+	-e POSTGRES_PASSWORD=CHANGEPASS \
+	--privileged \
+	--mount type=bind,source=./DatabaseFolder,target=/var/lib/postgresql/data  \
+	-p 5432:5432 \
+	--name dblearnstar_maindb \
+	postgres:17
Index: dbLearnStar-other/evaluation_method_view_example/eval_view_template.sql
===================================================================
--- dbLearnStar-other/evaluation_method_view_example/eval_view_template.sql	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
+++ dbLearnStar-other/evaluation_method_view_example/eval_view_template.sql	(revision 6209fffe1332f54308e0c257bc0913fbcf32f8a0)
@@ -0,0 +1,17 @@
+-- drop view
+drop view if exists EVALPREFIX_TASKNAME;
+
+-- create view
+CREATE OR REPLACE VIEW EVALPREFIX_TASKNAME
+AS
+
+
+VIEWTEKST
+
+
+;
+
+-- Permissions
+ALTER TABLE        EVALPREFIX_TASKNAME OWNER TO MAINDB_OWNER;
+GRANT ALL ON TABLE EVALPREFIX_TASKNAME TO MAINDB_OWNER;
+GRANT ALL ON TABLE EVALPREFIX_TASKNAME TO MAINDB_EVALUSER;
