Commit 3ee60dc853ae83674c20775755de1af823138cb4

Authored by Eder Soares
1 parent fa9f8676
Exists in 2.8 and in 7 other branches 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7

Renomeia os containers

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
docker-compose.yml
... ... @@ -3,7 +3,7 @@ version: '3'
3 3 services:
4 4  
5 5 nginx:
6   - container_name: nginx
  6 + container_name: ieducar-nginx
7 7 build: docker/nginx
8 8 links:
9 9 - php
... ... @@ -14,7 +14,7 @@ services:
14 14 - ./:/application
15 15  
16 16 php:
17   - container_name: php
  17 + container_name: ieducar-php
18 18 build: docker/php
19 19 links:
20 20 - postgres
... ... @@ -30,7 +30,7 @@ services:
30 30 - ./:/application
31 31  
32 32 postgres:
33   - container_name: postgres
  33 + container_name: ieducar-postgres
34 34 image: postgres:9.5
35 35 environment:
36 36 POSTGRES_DB: ieducar
... ... @@ -42,7 +42,7 @@ services:
42 42 - ./database/data:/var/lib/postgresql/data
43 43  
44 44 redis:
45   - container_name: redis
  45 + container_name: ieducar-redis
46 46 image: redis
47 47 restart: always
48 48 ports:
... ...