21 lines
511 B
YAML
21 lines
511 B
YAML
|
version: "3.8"
|
||
|
name: "keroosha-pechka-template"
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: postgres:15-alpine
|
||
|
environment:
|
||
|
POSTGRES_PASSWORD: 'postgres'
|
||
|
POSTGRES_INITDB: 'pechka'
|
||
|
ports:
|
||
|
- "5432:5432"
|
||
|
minio:
|
||
|
image: quay.io/minio/minio
|
||
|
command: server /data --console-address ":19001"
|
||
|
environment:
|
||
|
# _MINIO_SERVER_DEBUG: 'on'
|
||
|
MINIO_ROOT_USER: 'pechka'
|
||
|
MINIO_ROOT_PASSWORD: 'pechka'
|
||
|
ports:
|
||
|
- "19000:9000" # S3 interface
|
||
|
- "19001:19001" # Minio console
|