Browse Source

exposed ports removed

shared-host
Ignacio Falco 4 years ago
parent
commit
910c05f41b
1 changed files with 1 additions and 7 deletions
  1. 1
    7
      docker-compose.yml

+ 1
- 7
docker-compose.yml View File

9
     image: postgres:11.8
9
     image: postgres:11.8
10
     container_name: "postgres-scalelite-${ORGANIZACION}"
10
     container_name: "postgres-scalelite-${ORGANIZACION}"
11
     restart: unless-stopped
11
     restart: unless-stopped
12
-    ports:
13
-      - "127.0.0:54320:5432"
14
     volumes:
12
     volumes:
15
       - ./db:/var/lib/postgresql/data
13
       - ./db:/var/lib/postgresql/data
16
     environment:
14
     environment:
19
 
17
 
20
   redis:
18
   redis:
21
     image: redis:5.0-alpine
19
     image: redis:5.0-alpine
22
-    container_name: redis
20
+    container_name: "redis-${ORGANIZACION}"
23
     restart: on-failure
21
     restart: on-failure
24
-    ports:
25
-      - 127.0.0.1:63790:6379
26
     volumes:
22
     volumes:
27
       - redis-data:/data
23
       - redis-data:/data
28
 
24
 
59
     image: ${SCALELITE_REPO:-blindsidenetwks}/scalelite:${SCALELITE_TAG:-v1}-api
55
     image: ${SCALELITE_REPO:-blindsidenetwks}/scalelite:${SCALELITE_TAG:-v1}-api
60
     container_name: "scalelite-api-${ORGANIZACION}"
56
     container_name: "scalelite-api-${ORGANIZACION}"
61
     restart: unless-stopped
57
     restart: unless-stopped
62
-    ports:
63
-      - "3000:3000"
64
     volumes:
58
     volumes:
65
       - ./log/scalelite/:/app/log
59
       - ./log/scalelite/:/app/log
66
       - ${SCALELITE_RECORDING_DIR-/mnt/scalelite-recordings/var/bigbluebutton}:/var/bigbluebutton
60
       - ${SCALELITE_RECORDING_DIR-/mnt/scalelite-recordings/var/bigbluebutton}:/var/bigbluebutton

Loading…
Cancel
Save