forked from Schulddossier/schulddossier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev.yml
53 lines (52 loc) · 1.26 KB
/
docker-compose-dev.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
52
version: '3.2'
services:
database_dev:
image: postgres:9.5.11-alpine
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: insecure
POSTGRES_USER: schuldhulp
POSTGRES_DB: schuldhulp
web_dev:
build:
context: .
dockerfile: Dockerfile-dev
restart: always
volumes:
- type: bind
source: ./config
target: /srv/app/config
volume:
consistency: cached
- type: bind
source: ./public
target: /srv/app/public
- type: bind
source: ./src
target: /srv/app/src
volume:
consistency: cached
- type: bind
source: ./templates
target: /srv/app/templates
ports:
- "80:80"
- "443:443"
links:
- database_dev
environment:
- APP_ENV=dev
- APP_SECRET=secret
- DATABASE_URL=pgsql://schuldhulp:insecure@database_dev:5432/schuldhulp
- SWIFT_AUTH_URL=
- SWIFT_REGION=
- SWIFT_USER_NAME=
- SWIFT_USER_DOMAIN_ID=
- SWIFT_USER_PASSWORD=
- SWIFT_PROJECT_ID=
- SWIFT_CONTAINER_PREFIX=
- SWIFT_TEMP_URL_KEY=
- SWIFT_EXTERNAL_DOMAIN=
- APP_NOTIFICATIE_FROM=tester@test.com
- THUMBNAILSERVICE_URL=https://thumbnail.service/