morphus/docker-compose.yaml

28 lines
580 B
YAML
Raw Normal View History

2021-12-02 16:58:07 +00:00
# FOR DEVELOPMENT ONLY
# For examples check the "docker" directory.
2021-11-17 16:25:54 +00:00
version: '3.8'
services:
2022-05-28 22:09:03 +00:00
app:
image: cupcakearmy/morphus
build: .
volumes:
- ./morphus.yaml:/app/morphus.yaml:ro
ports:
- 80:80
depends_on:
- s3
2021-12-02 16:58:07 +00:00
s3:
image: minio/minio
2021-11-17 16:25:54 +00:00
ports:
2021-12-02 16:58:07 +00:00
- "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
2021-11-17 16:25:54 +00:00