commit 6131ace3f8f773c44fcda9b7602c30b3689d5929 Author: Lee Date: Tue Apr 23 02:34:59 2024 +0000 Add docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e706b37 --- /dev/null +++ b/docker-compose.yml @@ -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 \ No newline at end of file