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

19 lines
416 B
YAML
Raw Permalink Normal View History

2024-04-23 18:12:08 +00:00
version: '3.9'
2024-04-23 02:34:59 +00:00
services:
2024-06-01 17:26:13 +00:00
paste:
2024-04-23 02:34:59 +00:00
image: fascinated/paste-backend:latest
restart: always
2024-04-23 18:03:45 +00:00
volumes:
- ./application.yml:/home/container/application.yml
2024-04-23 02:34:59 +00:00
ports:
2024-06-01 17:26:21 +00:00
- "3000:3000"
2024-04-23 03:49:18 +00:00
mongo:
image: mongo:latest
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
ports:
2024-04-23 18:03:45 +00:00
- "27017:27017"
2024-04-23 03:49:18 +00:00
volumes:
- ./data:/data/db