26 lines
505 B
YAML
26 lines
505 B
YAML
version: '3'
|
|
|
|
services:
|
|
dev:
|
|
#build:
|
|
# context: .
|
|
image: vetandlife_app_image
|
|
command: npm run dev
|
|
volumes:
|
|
- ./dist:/app/dist
|
|
- ./src:/app/src
|
|
- ./public:/app/public
|
|
ports:
|
|
- 5173:5173
|
|
container_name: sportpressa_dev
|
|
|
|
build:
|
|
build:
|
|
context: .
|
|
image: sportpressa_app_image
|
|
command: npm run build
|
|
volumes:
|
|
- ./dist:/app/dist
|
|
- ./src:/app/src
|
|
- ./public:/app/public
|
|
container_name: sportpressa_build |