mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
13 lines
165 B
YAML
13 lines
165 B
YAML
version: '2'
|
|
services:
|
|
backend:
|
|
build: ./server
|
|
ports:
|
|
- "5000"
|
|
web:
|
|
build: ./client
|
|
links:
|
|
- backend
|
|
ports:
|
|
- "9999:80"
|