18 lines
359 B
YAML
18 lines
359 B
YAML
version: '3'
|
|
|
|
services:
|
|
frontend:
|
|
build: .
|
|
image: git.sahkoinsinoorikilta.fi:4567/vtmk/web2.0-frontend
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
API_URL: ${API_URL}
|
|
|
|
mock-backend:
|
|
build: .
|
|
image: git.sahkoinsinoorikilta.fi:4567/vtmk/web2.0-frontend-mock-backend
|
|
ports:
|
|
- "1234:1234"
|
|
command: npm run mock-backend
|