-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 853 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (36 loc) · 853 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
# Run Panorama with SSL fassade
# Peter Ramm, 22.03.2019
version: '3'
services:
nginx:
restart: always
image: nginx:latest
container_name: nginx
networks:
- web
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./:/etc/nginx/ssl_certificates/
ports:
- 80:80
- 443:443
panorama:
restart: always
image: rammpeter/panorama:latest
container_name: panorama
expose:
- "8080"
environment:
- TNS_ADMIN=/etc
- TZ=Europe/Berlin
- MAX_JAVA_HEAP_SPACE_MB=4096
- PANORAMA_VAR_HOME=/var/opt/panorama
- PANORAMA_SAMPLER_MASTER_PASSWORD=$PANORAMA_SAMPLER_MASTER_PASSWORD
- LOG_LEVEL=info
networks:
- web
volumes:
- $TNS_ADMIN/tnsnames.ora:/etc/tnsnames.ora
- /private/var/opt/panorama/:/var/opt/panorama/
networks:
web: