-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (35 loc) · 961 Bytes
/
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
version: '2'
services:
db:
image: ursa/postgresql-13.0:latest
restart: always
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=frepple
- POSTGRES_PASSWORD=frepple
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- 'postgres-data:/var/lib/postgresql/data/pgdata'
app:
build:
context: frepple
ports:
- '8080:80'
depends_on:
- db
environment:
- FREPPLE_ADMIN_NAME="Open Source Integrators"
- FREPPLE_ADMIN_EMAIL="support@opensourceintegrators.com"
# - FREPPLE_INSTALLED_APPS_CUSTOM="'customer',"
- FREPPLE_INSTALLED_APPS_FORECASTING=true
- FREPPLE_INSTALLED_APPS_INVENTORY=true
- FREPPLE_INSTALLED_APPS_ODOO=true
- FREPPLE_ODOO_PASSWORD_DEFAULT=
- FREPPLE_SECRET_KEY=
- FREPPLE_SECRET_WEBTOKEN_KEY=
- PGDATABASE=frepple
- PGHOST=db
- PGPASSWORD=frepple
- PGUSER=frepple
volumes:
postgres-data: