-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-pipeline.yml
51 lines (49 loc) · 1.3 KB
/
docker-compose-pipeline.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:
api:
build:
context: ./
args:
CI: ENABLED
entrypoint: bash run.sh
restart: unless-stopped
volumes:
- ./:/fyle-sage-desktop-api
depends_on:
- db
environment:
SECRET_KEY: thisisthedjangosecretkey
ALLOWED_HOSTS: "*"
DEBUG: "False"
NO_WORKERS: 1
API_URL: ${API_URL}
DATABASE_URL: postgres://postgres:postgres@db:5432/sage_desktop_db
FYLE_BASE_URL: 'https://sample.fyle.tech'
FYLE_CLIENT_ID: 'sample'
FYLE_CLIENT_SECRET: 'sample'
FYLE_REFRESH_TOKEN: 'sample.sample.sample'
SAGE_DESKTOP_USER_PASSWORD: 'sample'
SAGE_DESKTOP_USER_SENDER_ID: 'sample'
ENCRYPTION_KEY: ${ENCRYPTION_KEY}
FYLE_TOKEN_URI: 'https://sample.fyle.tech'
FYLE_SERVER_URL: 'https://sample.fyle.tech'
FYLE_JOBS_URL: 'https://sample.fyle.tech'
DB_NAME: sage_desktop_db
DB_USER: postgres
DB_PASSWORD: postgres
DB_HOST: db
DB_PORT: 5432
SD_API_KEY: 23234
SD_API_SECRET: 12312
db:
image: "postgres:15"
environment:
POSTGRES_DB: dummy
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- data:/var/lib/postgresql/data/
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
volumes:
api:
data: