11 lines
281 B
YAML
11 lines
281 B
YAML
version: "3.7"
|
|
services:
|
|
app:
|
|
image: nymanjens/quizmaster:latest
|
|
stdin_open: true
|
|
tty: true
|
|
ports: ["9001:9000"]
|
|
volumes:
|
|
- /srv/quizmaster/quiz:/app/conf/quiz
|
|
- /srv/quizmaster/application.conf:/app/conf/application.conf
|
|
command: "bin/server" |