mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
25 lines
398 B
YAML
25 lines
398 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
|
|
client:
|
|
build:
|
|
context: ./client
|
|
dockerfile: ./Dockerfile
|
|
ports:
|
|
- 3000:3000
|
|
depends_on:
|
|
- server
|
|
environment:
|
|
- SERVICE_SCHEME=http
|
|
- SERVICE_HOST=localhost
|
|
- SERVICE_PORT=4000
|
|
|
|
server:
|
|
build:
|
|
context: ./server
|
|
dockerfile: ./Dockerfile
|
|
ports:
|
|
- 4000:4000
|
|
command: npm run start
|