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

22 lines
448 B
YAML
Raw Normal View History

2024-04-23 02:34:59 +00:00
version: '3.7'
services:
frontend:
image: fascinated/paste-frontend:latest
restart: always
ports:
- 3000:3000
backend:
image: fascinated/paste-backend:latest
restart: always
ports:
2024-04-23 03:49:18 +00:00
- 3005:3000
mongo:
image: mongo:latest
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
ports:
- 27017:27017
volumes:
- ./data:/data/db