29 lines
638 B
YAML
Executable File
29 lines
638 B
YAML
Executable File
version: '3'
|
|
services:
|
|
users-myfit:
|
|
image: registry.chiefsoft.net/users-myfit:latest
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
restart: unless-stopped
|
|
ports:
|
|
- 7012:3000
|
|
# - 3800:3011
|
|
# stdin_open: true
|
|
working_dir: /usr/src/app
|
|
volumes:
|
|
- ./:/usr/src/app
|
|
- /usr/src/app/node_modules
|
|
- ./src/:/usr/src/app/src
|
|
- ./vendors/:/usr/src/app/vendors
|
|
extra_hosts:
|
|
- api.myfit.ai:10.10.33.15
|
|
- devapi.myfit.ai:10.10.33.15
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|
|
tty: true
|
|
stdin_open: true
|
|
# working_dir: /app
|
|
volumes:
|
|
src:
|