18 lines
355 B
YAML
18 lines
355 B
YAML
version: "3.7"
|
|
services:
|
|
app:
|
|
container_name: fsi_view
|
|
restart: always
|
|
build:
|
|
context: .
|
|
dockerfile: dev.dockerfile
|
|
|
|
tty: true
|
|
|
|
image: registry.beetai.com:5000/fsi_view:dev_1.0
|
|
ports:
|
|
- "5201:3000"
|
|
volumes:
|
|
- ./app/.env:/app/.env
|
|
- ./app/src:/app/src
|
|
- ./app/public:/app/public |