We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec25efa commit 2f85adcCopy full SHA for 2f85adc
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Changed
11
+
12
+- Ansible has now default yaml stdout
13
14
## [4.0.15] - 2023-08-09
15
16
### Added
server/Dockerfile
@@ -94,5 +94,8 @@ RUN npm i --only=production
94
# Copy transpiled js from builder stage into the final image
95
COPY --from=tmp_builder /app/dist ./dist
96
97
+# Copy the ansible.cfg file to /etc/ansible/ directory
98
+COPY ansible.cfg /etc/ansible/ansible.cfg
99
100
# Use js files to run the application
101
ENTRYPOINT ["node", "./dist/index.js"]
server/ansible.cfg
@@ -0,0 +1,2 @@
1
+[defaults]
2
+stdout_callback = yaml
0 commit comments