30 lines
536 B
YAML
30 lines
536 B
YAML
version: "3"
|
|
services:
|
|
backend:
|
|
build:
|
|
target: app # choose a stage to use
|
|
ports:
|
|
- 3000:3000
|
|
- 3001:3001
|
|
volumes:
|
|
- ./sqlite.db:/app/sqlite.db
|
|
env_file:
|
|
- .env
|
|
frontend:
|
|
build:
|
|
context: ../sorvor-front
|
|
args:
|
|
- VUE_APP_API_URL
|
|
ports:
|
|
- 3002:3000
|
|
minio:
|
|
image: quay.io/minio/minio
|
|
command: server /data --console-address ":9001"
|
|
ports:
|
|
- 9000:9000
|
|
- 9001:9001
|
|
volumes:
|
|
- ./minio/data:/data
|
|
env_file:
|
|
- .env
|