34 lines
751 B
YAML
34 lines
751 B
YAML
name: split-pro-dev
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:16
|
|
container_name: splitpro-db-dev
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=splitpro
|
|
- POSTGRES_PASSWORD=password
|
|
- POSTGRES_DB=splitpro
|
|
volumes:
|
|
- database:/var/lib/postgresql/data
|
|
ports:
|
|
- '54321:5432'
|
|
|
|
minio:
|
|
image: minio/minio
|
|
container_name: splitpro-storage-dev
|
|
ports:
|
|
- 9002:9002
|
|
- 9001:9001
|
|
volumes:
|
|
- minio:/data
|
|
environment:
|
|
MINIO_ROOT_USER: splitpro
|
|
MINIO_ROOT_PASSWORD: password
|
|
entrypoint: sh
|
|
command: -c 'mkdir -p /data/splitpro && minio server /data --console-address ":9001" --address ":9002"'
|
|
|
|
volumes:
|
|
database:
|
|
minio:
|