mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-06 07:13:39 +00:00
18 lines
275 B
YAML
18 lines
275 B
YAML
version: "3.9"
|
|
services:
|
|
frontend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
links:
|
|
- "backend:backend"
|
|
backend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: backend
|
|
ports:
|
|
- 8080:8080
|