mirror of
https://github.com/cupcakearmy/morphus.git
synced 2024-12-22 08:06:30 +00:00
28 lines
580 B
YAML
28 lines
580 B
YAML
# FOR DEVELOPMENT ONLY
|
|
# For examples check the "docker" directory.
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
image: cupcakearmy/morphus
|
|
build: .
|
|
volumes:
|
|
- ./morphus.yaml:/app/morphus.yaml:ro
|
|
ports:
|
|
- 80:80
|
|
depends_on:
|
|
- s3
|
|
|
|
s3:
|
|
image: minio/minio
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
# https://docs.min.io/minio/baremetal/reference/minio-server/minio-server.html#root-credentials
|
|
# Default user and password are "minioadmin"
|
|
command: server /data --console-address ":9001"
|
|
# volumes:
|
|
# - ./data:/data
|
|
|