forked from emfcamp/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (42 loc) · 882 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
46 lines (42 loc) · 882 Bytes
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
services:
app:
build:
context: "./"
init: true
networks:
- emfweb
depends_on:
- postgres
volumes:
- .:/app
- ./var/vat_invoices:/vat_invoices
ports:
- "2342:2342"
environment:
SETTINGS_FILE: ./config/development.cfg
FLASK_APP: dev_server.py # Required for flask-admin 1.6.1 to work (see #1769)
COLORIZE_LOGS: always
PYTHONUNBUFFERED: 1
IRCCAT: fakeirccat:12345
NO_DEV_DATA: ${NO_DEV_DATA:-}
rsbuild:
build:
context: "./docker/rsbuild"
init: true
volumes:
- .:/app
postgres:
image: 'postgis/postgis:16-3.4-alpine'
environment:
POSTGRES_PASSWORD: postgres
networks:
- emfweb
fakeirccat:
build:
context: "./docker/netcat"
command: -k -l -p 12345
init: true
networks:
- emfweb
networks:
emfweb: