This repository has been archived on 2024-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
Docker/docker-compose.yml
2024-04-23 02:34:59 +00:00

12 lines
232 B
YAML

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