Add docker-compose.yml

This commit is contained in:
Lee 2024-04-23 02:34:59 +00:00
commit 6131ace3f8

12
docker-compose.yml Normal file

@ -0,0 +1,12 @@
version: '3.7'
services:
frontend:
image: fascinated/paste-frontend:latest
restart: always
ports:
- 3000:3000
backend:
image: fascinated/paste-backend:latest
restart: always
ports:
- 3005:3000