mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-19 11:01:47 +02:00
13 lines
157 B
YAML
13 lines
157 B
YAML
version: '2'
|
|
services:
|
|
mongo:
|
|
image: mongo
|
|
restart: always
|
|
ports:
|
|
- "27017:27017"
|
|
|
|
backend:
|
|
depends_on:
|
|
- mongo
|
|
build: .
|