forked from mysql/mysql-docker
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
51 lines (45 loc) · 1.3 KB
/
docker-compose.yml
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
version: '3.7'
services:
flask-server:
image: hopsworks/flask-server-rondb:latest
container_name: flask-server
command: ["--no-active-test-worker"]
environment:
IMAGE_TO_SPAWN: hopsworks/rondb-managed:21.04.16-1.0
CLOUD_BASE_URL: "http://flask-server:8000"
ports:
# Host:Docker
- 8000:8000
volumes:
# This is to mount the desired_state.jsonc file. We're binding the
# entire directory, since some editors (e.g. Vim) can overwrite the
# file's inode when saving the file on host and thereby break the mount.
- type: bind
source: .
target: /home/desired_state
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
# Host ndb-agent & RonDB tarballs for up/downgrades
nginx:
image: hopsworks/nginx-rondb:latest
container_name: nginx
restart: "no"
expose:
- 80
# This container can be killed once the cluster is running
bootstrap_agent:
image: hopsworks/rondb-managed:21.04.16-1.0
container_name: bootstrap_agent
environment:
IS_BOOTSTRAP_HOST: "true"
CLOUD_BASE_URL: "http://flask-server:8000"
volumes:
- type: volume
source: dummy_sink
target: /home/sink
volumes:
dummy_sink:
networks:
default:
attachable: true