
* initial commit * Remove pre-commit-config * Update gitignore * Update README * Add better config for monitoring app (#190) --------- Co-authored-by: Lukasz Ostrowski <lukasz.ostrowski@saleor.io>
16 lines
275 B
YAML
16 lines
275 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
api:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
target: dev
|
|
stdin_open: true
|
|
tty: true
|
|
ports:
|
|
- "5001:80"
|
|
environment:
|
|
- DEBUG=True
|
|
volumes:
|
|
- ./backend/monitoring/:/app/monitoring
|