2026-02-24 21:46:56 +02:00
|
|
|
services:
|
2026-03-13 12:11:23 +01:00
|
|
|
backend:
|
2026-05-24 17:14:34 +03:00
|
|
|
build:
|
|
|
|
|
context: https://github.com/status-im/status-go.git#develop
|
|
|
|
|
platform: linux/amd64
|
2026-03-05 15:18:55 +00:00
|
|
|
container_name: status-backend
|
|
|
|
|
ports:
|
|
|
|
|
- 8080:8080
|
|
|
|
|
- 8545:8545
|
|
|
|
|
- 30303:30303
|
|
|
|
|
entrypoint: 'status-backend'
|
|
|
|
|
command: '-address 0.0.0.0:8080'
|
|
|
|
|
volumes:
|
2026-03-13 21:27:50 +00:00
|
|
|
- ./backups:/root/.config/Status/backups
|
2026-05-08 12:32:12 +05:30
|
|
|
- ./assets:/assets:ro
|
2026-03-05 15:18:55 +00:00
|
|
|
networks:
|
|
|
|
|
- status-bridge
|
2026-03-13 12:11:23 +01:00
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "curl http://0.0.0.0:8080/health"]
|
|
|
|
|
|
2026-03-05 15:18:55 +00:00
|
|
|
networks:
|
|
|
|
|
status-bridge:
|
|
|
|
|
name: status-bridge
|
|
|
|
|
driver: bridge
|