mirror of
https://github.com/cupcakearmy/morphus.git
synced 2024-12-22 16:16:27 +00:00
20 lines
336 B
YAML
20 lines
336 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
image: cupcakearmy/morphus
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- minio
|
|
volumes:
|
|
- ./morphus.yaml:/app/morphus.yaml:ro
|
|
|
|
minio:
|
|
image: minio/minio
|
|
restart: unless-stopped
|
|
command: server /data
|
|
volumes:
|
|
- ./data/minio:/data
|