19 lines
251 B
YAML
19 lines
251 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
server:
|
|
build: ./server
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- PORT=3000
|
|
|
|
client:
|
|
build: ./client
|
|
ports:
|
|
- "8080:80"
|
|
depends_on:
|
|
- server
|