Add publish-containers workflow

This commit is contained in:
Dave Gallant
2022-12-25 12:09:07 -05:00
parent 214cc13d49
commit ea896fb713
5 changed files with 132 additions and 20 deletions

16
docker-compose.prod.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "3.9"
services:
frontend:
image: ghcr.io/davegallant/rfd-fyi-frontend
ports:
- 80:80
- 443:443
links:
- "backend:backend"
volumes:
- ./data:/data
backend:
image: ghcr.io/davegallant/rfd-fyi-backend
ports:
- 8080:8080
env_file: .env