mirror of
https://github.com/byulmaru/quesdon
synced 2024-11-23 14:36:02 +09:00
18 lines
328 B
YAML
18 lines
328 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: 'mongo:3.6'
|
|
volumes:
|
|
- mongo-data:/data/db
|
|
app:
|
|
image: 'registry.gitlab.com/byulmaru/quesdon'
|
|
ports:
|
|
- '17323:17323'
|
|
links:
|
|
- db
|
|
environment:
|
|
- MONGODB_URL=mongodb://db/quesdon
|
|
- VIRTUAL_HOST=quesdon.planet.moe
|
|
- BACK_PORT=17323
|
|
|