Skip to content

Commit 9381372

Browse files
Merge branch 'main' into witold-swierzy-soda-java
2 parents 5464f56 + d5f7ac3 commit 9381372

File tree

3 files changed

+16
-1
lines changed
  • ai-data-strategy
  • app-dev/devops-and-containers/container-instances/ci-nginx-with-volumes-example

3 files changed

+16
-1
lines changed

ai-data-strategy/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AI Data Strategy
2+
3+
Oracle AI Data Strategy material and resources.
4+
5+
# License
6+
7+
Copyright (c) 2025 Oracle and/or its affiliates.
8+
9+
Licensed under the Universal Permissive License (UPL), Version 1.0.
10+
11+
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE.txt) for more details.

app-dev/devops-and-containers/container-instances/ci-nginx-with-volumes-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ However, before creating the RM terraform stack a few other OCI resources need t
6868
<li>OCI Logging target for the container sidecar to send the <code>access.log</code> with <code>tail</code> to</li>
6969
</ul>
7070
Once these are created, the RM stack can be created with a configuration that incudes these above among other variables and be deployed.<br>
71-
The result will be a working NGINX with html content from OS and access logs being to OCI Logging for monitoring.
71+
The result will be a working NGINX with html content from OS and access logs being sent to OCI Logging for monitoring.
7272

7373
## Steps to complete
7474

app-dev/devops-and-containers/container-instances/ci-nginx-with-volumes-example/files/source/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ async function mount(osClient, namespace, bucket, www_path)
6363
console.log(files[i].name);
6464
await downloadFile(osClient, namespace, bucket, files[i], www_path);
6565
}
66+
67+
setTimeout(function() {
68+
mount(osClient, namespace, bucket, www_path);
69+
}, 5000);
6670
}
6771

6872
async function downloadFile(osClient, namespace, bucket, file, path)

0 commit comments

Comments
 (0)