-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
47 lines (46 loc) · 1.5 KB
/
docker-compose.yaml
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
#
# eChempad is a suite of web services oriented to manage the entire
# data life-cycle of experiments and assays from Experimental
# Chemistry and related Science disciplines.
#
# Copyright (C) 2021 - present Institut Català d'Investigació Química (ICIQ)
#
# eChempad is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
---
version: "2.1"
services:
echempad_app:
image: aleixmt/echempad:latest
environment:
- PUID=1001
- PGID=1001
- TZ=Etc/UTC
ports:
- "0.0.0.0:80:8081"
volumes: # Mount secret files (DATAVERSE_KEY.txt and SIGNALS_KEY.txt)
- ./src/main/resources/secrets:/app/target/classes/secrets
restart: unless-stopped
postgres_db:
image: postgres
environment:
- PUID=1001
- PGID=1001
- TZ=Etc/UTC
- POSTGRES_PASSWORD=chemistry
- POSTGRES_USER=amarine
- POSTGRES_DB=eChempad
ports:
- "0.0.0.0:8080:5432"
restart: unless-stopped