mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
21 lines
293 B
YAML
21 lines
293 B
YAML
version: '3'
|
|
|
|
services:
|
|
webui:
|
|
build: ./webui
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- mongodb
|
|
environment:
|
|
DB_URI: mongodb://mongodb/nextepc
|
|
|
|
mongodb:
|
|
image: mongo
|
|
ports:
|
|
- "27017:27017"
|
|
volumes:
|
|
- db-data:/data/db
|
|
|
|
volumes:
|
|
db-data:
|