mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-31 14:11:07 +00:00
28 lines
941 B
YAML
28 lines
941 B
YAML
services:
|
|
backend:
|
|
# NOTE: To run on Windows, please make sure you clone `status-im/status-go`
|
|
# and change the context to the folder. If you do not want to clone the
|
|
# repository, make sure you have set up WSL (https://learn.microsoft.com/en-us/windows/wsl/install)
|
|
# and started it.
|
|
build:
|
|
context: https://github.com/status-im/status-go.git#develop
|
|
platform: linux/amd64
|
|
container_name: status-backend
|
|
ports:
|
|
- 8080:8080
|
|
- 8545:8545
|
|
- 30303:30303
|
|
entrypoint: 'status-backend'
|
|
command: '-address 0.0.0.0:8080'
|
|
volumes:
|
|
- ./backups:/root/.config/Status/backups
|
|
networks:
|
|
- status-bridge
|
|
healthcheck:
|
|
test: ["CMD", "curl http://0.0.0.0:8080/health"]
|
|
|
|
networks:
|
|
status-bridge:
|
|
name: status-bridge
|
|
driver: bridge
|