Skip to content
Snippets Groups Projects
Commit 47103e8b authored by Paolo Brasolin's avatar Paolo Brasolin
Browse files

feat: setup minio for local development

parent 276ded88
No related branches found
No related tags found
No related merge requests found
version: '3.7'
services:
webserver:
build:
context: .
dockerfile: Dockerfile
target: production
ports:
- '8080:8080'
environment:
- PORT=8080
command: npm run start
......@@ -50,4 +50,20 @@ services:
ports:
- "5432:5432"
volumes:
# - postgres_data:/var/lib/postgresql/data
- ./postgres-data:/var/lib/postgresql/data
minio:
image: minio/minio:latest
restart: always
expose:
- 9000
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio_data:/data
entrypoint: minio server /data --console-address ":9001"
volumes:
postgres_data:
minio_data:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment