atmost working example

This commit is contained in:
Aleksandr Trushkin
2024-08-11 21:44:19 +03:00
parent 0046755c7d
commit 880f67aa73
16 changed files with 566 additions and 107 deletions

33
compose.yaml Normal file
View File

@ -0,0 +1,33 @@
services:
web.mongo:
image: git.loyso.art/devsim:latest
ports:
- 9124:80
depends_on:
- postgres
- mongo
environment:
DEVSIM_MONGO_DSN: mongodb://mongo
DEVSIM_STORE_TYPE: mongo
web.pg:
image: git.loyso.art/devsim:latest
ports:
- 9123:80
depends_on:
- postgres
- mongo
environment:
DEVSIM_PG_DSN: "postgres://devsim:devsim@postgres:5432/devsim?sslmode=disable"
DEVSIM_STORE_TYPE: pg
postgres:
image: postgres:15-alpine
environment:
POSTGRES_DB: devsim
POSTGRES_PASSWORD: devsim
POSTGRES_USER: devsim
ports: ["5432:5432"]
mongo:
image: mongo:7