We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0834de commit fed93abCopy full SHA for fed93ab
.dockerignore
@@ -2,7 +2,11 @@ sample.env
2
.env
3
README.md
4
eslint.config.js
5
+Dockerfile
6
+compose.yaml
7
+prod.compose.yaml
8
.github
9
docs
10
node_modules
11
tests
12
+certs
prod.compose.yaml
@@ -2,6 +2,7 @@ services:
postgres-ucpa:
image: postgres:15.8-alpine
container_name: ucpa-postgres
+ restart: always
networks:
- back
ports:
@@ -18,6 +19,9 @@ services:
18
19
chrome:
20
image: ghcr.io/browserless/chromium
21
container_name: chrome
22
+ ports:
23
+ - '3033:3000'
24
25
26
27
@@ -30,6 +34,7 @@ services:
30
34
- chrome
31
35
command: >
32
36
sh -c "npm run db:migrate && npm start"
37
33
38
39
40
- web
0 commit comments