-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
58 lines (54 loc) · 1.66 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
58 lines (54 loc) · 1.66 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
services:
mongodb:
# MongoDB 5.0+ requires AVX; keep 4.4.x so contributors on older CPUs can still use compose.
image: mongo:4.4.29
restart: always
# Uncomment to connect from the host machine with tools like mongosh or MongoDB Compass.
# The pychess server container reaches MongoDB over the internal compose network, so this
# host port is not needed for normal pychess development.
# ports:
# - 27017:27017
environment:
- MONGO_INITDB_ROOT_USERNAME=${MONGO_ADMIN_USER:-admin}
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_ADMIN_PASS:-pass}
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=${MONGO_ADMIN_USER:-admin}
- ME_CONFIG_MONGODB_ADMINPASSWORD=${MONGO_ADMIN_PASS:-pass}
- ME_CONFIG_MONGODB_URL=mongodb://${MONGO_ADMIN_USER:-admin}:${MONGO_ADMIN_PASS:-pass}@mongodb:27017
depends_on:
- "mongodb"
server:
build:
context: .
dockerfile: docker/server.Dockerfile
restart: always
ports:
- 8080:8080
environment:
- MONGO_HOST=mongodb://${MONGO_ADMIN_USER:-admin}:${MONGO_ADMIN_PASS:-pass}@mongodb:27017
depends_on:
- "mongodb"
ci:
profiles:
- ci
build:
context: .
dockerfile: docker/ci.Dockerfile
working_dir: /workspace
command: ["sleep", "infinity"]
stdin_open: true
tty: true
environment:
- MONGO_HOST=mongodb://${MONGO_ADMIN_USER:-admin}:${MONGO_ADMIN_PASS:-pass}@mongodb:27017
depends_on:
- "mongodb"
volumes:
- .:/workspace
- ci_node_modules:/workspace/node_modules
volumes:
ci_node_modules: