Skip to content

Commit 2a43026

Browse files
authored
chore: Dev Docker Compose (#118)
* Add docker compose to make local development easier * Corresponding README on usage
1 parent 886ec62 commit 2a43026

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

deploy/dev/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Deploy Dev
2+
3+
## Introduction
4+
5+
This folder contains the resources to run secondary software for
6+
development purposes. Secondary software refers to any software not
7+
managed by this project.
8+
9+
## Running the Docker Compose
10+
11+
```sh
12+
docker compose up
13+
```
14+
15+
## Limitations
16+
17+
* Does not provide local authentication service
18+
* Does not provide local GCP bucket support
19+
* Does not provide local GCP job running support

deploy/dev/docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
signtag-mongodb:
3+
image: mongo:8.2.3
4+
container_name: signtag-mongodb
5+
ports:
6+
- "27017:27017"
7+
volumes:
8+
- signtag-mongodb-data:/data/db
9+
10+
volumes:
11+
signtag-mongodb-data:

0 commit comments

Comments
 (0)