We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 886ec62 commit 2a43026Copy full SHA for 2a43026
deploy/dev/README.md
@@ -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
@@ -0,0 +1,11 @@
+services:
+ signtag-mongodb:
+ image: mongo:8.2.3
+ container_name: signtag-mongodb
+ ports:
+ - "27017:27017"
+ volumes:
+ - signtag-mongodb-data:/data/db
+volumes:
+ signtag-mongodb-data:
0 commit comments