File size: 529 Bytes
c6105bd 0449517 d81fbeb c6105bd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
services:
backend:
ports:
- "7860:7860"
build: .
image: introspector-react-browser:latest
volumes:
- type: bind
source: "frontend/build"
target: "/home/user/app/static"
# - type: bind
# source: frontend/introspector.ttl
# target: "/home/user/introspector.ttl"
# - type: bind
# source: "."
# target: "/home/user/app/"
# - type: bind
# source: "frontend/build/index.html"
# target: "/home/user/app/index.html"
# frontend:
|