Browse Source

Fix indentation of docker-compose file

Signed-off-by: Tamal Saha <tamal@appscode.com>
Tamal Saha 4 years ago
parent
commit
8a9b3efbb0
1 changed files with 11 additions and 11 deletions
  1. 11 11
      docker-compose.yml

+ 11 - 11
docker-compose.yml

@@ -13,16 +13,16 @@ x-app-defaults: &app-defaults
     - listmonk
 
 x-db-defaults: &db-defaults
-    image: postgres:11
-    ports:
-      - "9432:5432"
-    networks:
-      - listmonk
-    environment:
-      - POSTGRES_PASSWORD=listmonk
-      - POSTGRES_USER=listmonk
-      - POSTGRES_DB=listmonk
-    restart: unless-stopped
+  image: postgres:11
+  ports:
+    - "9432:5432"
+  networks:
+    - listmonk
+  environment:
+    - POSTGRES_PASSWORD=listmonk
+    - POSTGRES_USER=listmonk
+    - POSTGRES_DB=listmonk
+  restart: unless-stopped
 
 services:
   db:
@@ -43,7 +43,7 @@ services:
   demo-app:
     <<: *app-defaults
     command: [sh, -c, "yes | ./listmonk --install --config config-demo.toml && ./listmonk --config config-demo.toml"]
-    depends_on: 
+    depends_on:
       - demo-db
 
 networks: