-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (59 loc) · 1.37 KB
/
docker-compose.yml
File metadata and controls
65 lines (59 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
services:
#app:
# build: .
# ports:
# - 7000:8080
# environment:
# BEANS_ENV: production
arangodb:
image: arangodb/arangodb:latest
environment:
ARANGO_ROOT_PASSWORD: password
ports:
- 8529:8529
volumes:
- arangodb-data:/var/lib/arangodb3
- ./foxx:/var/lib/arangodb3-apps
pgrest:
image: postgrest/postgrest
ports:
- "3000:3000"
environment:
PGRST_DB_URI: postgres://postgres:password@postgres:5432/app_db
PGRST_OPENAPI_SERVER_PROXY_URI: http://127.0.0.1:3000
PGRST_JWT_SECRET: "3ed06358-2894-4c70-8f9c-0d202708f3597ec9272e-0b40-4ea4-9b5b-d6084103b8ae"
PGRST_DB_SCHEMAS: public
depends_on:
- postgres
postgres:
image: postgres
ports:
- "5432:5432"
environment:
POSTGRES_DB: app_db
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
#db2rest:
# env_file:
# - .env
# image: kdhrubo/db2rest:latest
# ports:
# - 7070:8080
#cratedb:
# image: crate:latest
# ports:
# - 4200:4200
# - 4300:4300
# volumes:
# - cratedb-data:/data
#surrealdb:
# image: surrealdb/surrealdb:latest
# command: start --user root --pass password rocksdb:/mydata/luaonbeans.db
# ports:
# - 8000:8000
# volumes:
# - surrealdb-data:/mydata
volumes:
arangodb-data:
#cratedb-data:
#surrealdb-data: