Files
plexus/docker-compose.yml
2026-01-13 22:55:46 +01:00

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