Browse Source

restricted sockets to 127.0.0.1

tags/v1.0.2^0
Robin Thoni 7 years ago
parent
commit
7345fc5479
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      docker-compose.yml

+ 2
- 2
docker-compose.yml View File

11
         volumes:
11
         volumes:
12
             - ./data/postgresql/data:/var/lib/postgresql/data
12
             - ./data/postgresql/data:/var/lib/postgresql/data
13
         ports:
13
         ports:
14
-            - "34010:5432"
14
+            - "127.0.0.1:34010:5432"
15
         env_file:
15
         env_file:
16
             - env
16
             - env
17
 
17
 
23
                 aliases:
23
                 aliases:
24
                     - roundcube.roundcube.internal.docker
24
                     - roundcube.roundcube.internal.docker
25
         ports:
25
         ports:
26
-            - "34011:80"
26
+            - "127.0.0.1:34011:80"
27
         env_file:
27
         env_file:
28
             - env
28
             - env
29
         extra_hosts:
29
         extra_hosts:

Loading…
Cancel
Save