10 lines
311 B
YAML
10 lines
311 B
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./imagerepo/db/:/db # SQLite db storage
|
|
- ./imagerepo/images:/images # where the app will store it's imported images
|
|
- ./import:/import # where it will import images from
|
|
- ./migrations:/app/migrations # for dev |