mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 02:24:16 +00:00
15 lines
233 B
YAML
15 lines
233 B
YAML
version: "3"
|
|
|
|
services:
|
|
app:
|
|
build: packages/app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9000:9000"
|
|
api:
|
|
build: packages/server
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- .env |