22 lines
448 B
YAML
22 lines
448 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
|
|
mongo:
|
|
image: mongo:latest
|
|
restart: always
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: root
|
|
ports:
|
|
- 27017:27017
|
|
volumes:
|
|
- ./data:/data/db |