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