26 lines
469 B
YAML
26 lines
469 B
YAML
version: "3.9"
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- 7700:7700
|
|
- 49153:49153
|
|
expose:
|
|
- 7780:7780
|
|
- 7781:7781
|
|
volumes:
|
|
- .:/web/config
|
|
- ../src/backend:/web/backend:cached
|
|
- type: bind
|
|
target: /web/frontend
|
|
source: ../src/frontend
|
|
volume:
|
|
nocopy: true
|
|
- ./logs:/var/log
|
|
- vendor:/web/backend/vendor
|
|
- var:/web/backend/var
|
|
volumes:
|
|
nodemodules:
|
|
vendor:
|
|
var:
|