mkbrut 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/mkbrut/version.rb +1 -1
- data/templates/Base/docker-compose.dx.yml +8 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 626bfeea30265e33ca6d62375a71de613a3c6dfd8686b74daf8e756330a227b9
|
4
|
+
data.tar.gz: 9cda4b60fb19f5d2dcccc21480ec954d970d5b6aa3402b4fdddf1aea658087f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c62569fa6441862162d60531e0458be4b6459654e6a4d6fe0942a3ffd56c6ca2f5062344e8ebc9f23f4fe72ee3e192e862a8652a1becb54d240de1b0f6d30f5
|
7
|
+
data.tar.gz: 87921b58cc901bca9c72315de269f0ed69f8056db6cfa37f54c4e38dfcbbdc6553b72e021e826077f17eafb9f78c111ed9ad698cf87d18b191727a906a7240ef
|
data/lib/mkbrut/version.rb
CHANGED
@@ -57,6 +57,9 @@ services:
|
|
57
57
|
# will be available on your localhost. The port AFTER the colon is where
|
58
58
|
# the app runs in the container. So: change the port before the colon, and
|
59
59
|
# don't change the one after.
|
60
|
+
#
|
61
|
+
# * 6502 - dev
|
62
|
+
# * 6503 - test server (run by E2E tests)
|
60
63
|
ports:
|
61
64
|
- "6502:6502"
|
62
65
|
- "6503:6503"
|
@@ -71,20 +74,19 @@ services:
|
|
71
74
|
pull_policy: "missing"
|
72
75
|
environment:
|
73
76
|
# Postgres will not work without being told the password. The most
|
74
|
-
# direct way to do that is via
|
77
|
+
# direct way to do that is via this environment variable.
|
75
78
|
POSTGRES_PASSWORD: postgres
|
76
|
-
# This service runs Redis, though actuallyu ValKey.
|
77
|
-
redis:
|
78
|
-
image: valkey/valkey:7.2
|
79
79
|
# This runes otel-deskop-viewer, which will receive OpenTelemetry traces
|
80
80
|
# from your app. You can connect to this to observe those traces.
|
81
81
|
otel-desktop-viewer:
|
82
82
|
# The otel-desktop-viewer maintainers do not maintain a Docker
|
83
83
|
# image of the app. I have made one available on my DockerHub account.
|
84
|
-
# If you want to build your own, see
|
84
|
+
# If you want to build your own, see
|
85
|
+
# https://github.com/CtrlSpice/otel-desktop-viewer?tab=readme-ov-file#via-docker
|
85
86
|
# When you build that image, change the value for image: below to the image
|
86
87
|
# name you chose.
|
87
88
|
image: davetron5000/otel-desktop-viewer:alpine-3
|
88
|
-
# This runs on port 8000
|
89
|
+
# This runs internally on port 8000 but will be available
|
90
|
+
# on port 6504 of your machine.
|
89
91
|
ports:
|
90
92
|
- "6504:8000"
|