mirror of
https://github.com/status-im/status-go.git
synced 2026-08-31 09:01:16 +00:00
tests-functional/ -> test/functional/ tests-unit-network/ -> test/unit-network/ No Go code changes beyond the two package paths. Every reference follows: Makefile targets, the pytest-lint and reliability workflows, the three Jenkinsfiles, the root Dockerfile, pyrightconfig.json, .gitignore, the benchmark and functional-test scripts, and the docs. All paths inside the moved directories are self-contained (docker compose uses `context: .`, the Python helpers resolve from __file__), so the extra level of nesting does not reach outside. refs #7067
21 lines
287 B
YAML
21 lines
287 B
YAML
version: "3.9"
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
enable_ipv6: true
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: "fd00:0:0:1::/64"
|
|
gateway: "fd00:0:0:1::1"
|
|
|
|
services:
|
|
anvil:
|
|
networks:
|
|
- default
|
|
|
|
foundry:
|
|
networks:
|
|
- default
|