mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
ed45c77be5
Former-commit-id: ed635ee95de7160cde11eaabc0c1dcb0e460a620
19 lines
263 B
YAML
19 lines
263 B
YAML
version: "3.1"
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
environment:
|
|
Port: 8080
|
|
DSN: db:27017
|
|
ports:
|
|
- 8080:8080
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mongo
|
|
environment:
|
|
MONGO_INITDB_DATABASE: store
|
|
ports:
|
|
- 27017:27017
|