mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-05 15:03:38 +00:00
21 lines
328 B
YAML
21 lines
328 B
YAML
version: "3.9"
|
|
services:
|
|
frontend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
links:
|
|
- "backend:backend"
|
|
volumes:
|
|
- ./data:/data
|
|
backend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: backend
|
|
ports:
|
|
- 8080:8080
|
|
env_file: .env
|