forked from llemr-conspiracy/llemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal-umkc.yml
44 lines (40 loc) · 952 Bytes
/
local-umkc.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
version: '3'
volumes:
local_postgres_data: {}
local_postgres_data_backups: {}
services:
django:
build:
context: .
dockerfile: ./compose/local/django/Dockerfile
image: osler_local_django
container_name: django
depends_on:
- postgres
volumes:
- .:/app
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
- ./.envs/.local/.umkc
ports:
- "8000:8000"
command: /start
links:
- selenium
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: osler_production_postgres
container_name: postgres
volumes:
- local_postgres_data:/var/lib/postgresql/data
- local_postgres_data_backups:/backups
env_file:
- ./.envs/.local/.postgres
selenium:
image: selenium/standalone-chrome-debug:3.141
ports:
- 4444:4444 # Selenium
- 5900:5900 # VNC server