build: Add Docker Compose configuration

This commit is contained in:
Prad Nukala 2024-08-22 10:06:31 -04:00 committed by Prad Nukala (aider)
parent 564b9f1152
commit ca96fa1deb
2 changed files with 18 additions and 3 deletions

View File

@ -1,3 +0,0 @@
module client
go 1.22.0

18
docker-compose.yaml Normal file
View File

@ -0,0 +1,18 @@
version: "3"
services:
sonr:
build: .
environment:
- SECRET_VAR
- REDIS_HOST
- REDIS_PASSWORD
depends_on:
- ipfs
ipfs:
build: .
environment:
- SECRET_VAR
- REDIS_HOST
- REDIS_PASSWORD