-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (43 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
45 lines (43 loc) · 1.08 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
version: '3.9'
services:
workflowdb:
image: postgres:14
container_name: workflowdb
volumes:
- ./src/main/resources/init_db_dev.sh:/docker-entrypoint-initdb.d/init.sh
- workflowdb:/var/lib/postgresql/data
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: postgres
networks:
default:
aliases:
- workflowdb
# workflowdbtest:
# image: postgres:13
# container_name: workflowdbtest
# volumes:
# - ./src/test/resources/init_db_devtest.sh:/docker-entrypoint-initdb.d/init.sh
# ports:
# - "5433:5432"
# environment:
# POSTGRES_PASSWORD: postgres
# networks:
# default:
# aliases:
# - workflowdbtest
#
# jupyter-almond:
# image: almondsh/almond:0.10.9
# container_name: jupyter-almond
# ports:
# - "8888:8888"
# volumes:
# - ./notebooks/:/home/jovyan/notebooks
# - ./target/scala-2.13/masterthesis-khipu-assembly-0.1.jar:/home/jovyan/jar/masterthesis-khipu-assembly-0.1.jar
# working_dir: /home/jovyan/
volumes:
workflowdb:
networks:
default: