We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebfab22 commit 73328a2Copy full SHA for 73328a2
1 file changed
deployment/ci/docker-compose.yml
@@ -0,0 +1,29 @@
1
+services:
2
+ db:
3
+ image: postgres:17
4
+ ports:
5
+ - "5432:5432"
6
+ environment:
7
+ POSTGRES_DB: development
8
+ POSTGRES_USER: db-user
9
+ POSTGRES_PASSWORD: 1234
10
+ PGDATA: /var/lib/postgresql/data
11
+
12
+ build-engine:
13
+ depends_on:
14
+ - db
15
+ - valkey
16
+ build:
17
+ context: .
18
+ dockerfile: Dockerfile
19
20
+ - "8443:8443"
21
22
+ DATABASE_URL: "postgresql://db-user:1234@db:5432/dev-buildengine?schema=public"
23
+ VALKEY_HOST: "valkey"
24
+ # MUST be included (the path the application will be accessed on) and MUST NOT have a trailing slash
25
+ ORIGIN: "http://localhost:8443"
26
27
+ valkey:
28
+ image: valkey/valkey:latest
29
+ command: valkey-server --appendonly yes --appendfilename appendonly.aof --maxmemory-policy noeviction
0 commit comments