Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/dictionary/custom_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ https
monotypes
Monotypes
natively
nginx
os
permissioned
pipx
Expand Down
4 changes: 4 additions & 0 deletions docs/source/dev_documentation/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Fixed

- Chain simulator explorer and lite-wallet containers failing on restart due to non-idempotent nginx config in upstream images (added `--force-recreate` to `docker compose up`)

## 3.1.0 - 2026-02-11

### Added
Expand Down
10 changes: 9 additions & 1 deletion mxops/utils/chain_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,15 @@ def start_chain_simulator(

LOGGER.info("Starting the chain simulator")
process = subprocess.Popen( # nosec
["docker", "compose", "-f", file_path.as_posix(), "up", "-d"],
[
"docker",
"compose",
"-f",
file_path.as_posix(),
"up",
"-d",
"--force-recreate",
],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mxops"
version = "3.1.0"
version = "3.1.1-dev0"
authors = [
{name="Etienne Wallet"},
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.1.0
current_version = 3.1.1-dev0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>[^-0-9]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
Expand Down
Loading