Unverified Commit 7c613bc7 authored by Leopere's avatar Leopere Committed by GitHub
Browse files

Delete superfluous network definition (#404)

No need to define a network when compose files and stackfiles come with their own cross container network defined as `default` superfluous networks add nothing.
parent cb480919
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -2,8 +2,6 @@ version: '3.0'
services:
  haste-server:
    build: .
    networks:
      - db-network
    environment:
      - STORAGE_TYPE=memcached
      - STORAGE_HOST=memcached
@@ -12,8 +10,3 @@ services:
      - 7777:7777
  memcached:
    image: memcached:latest
    networks:
      - db-network

networks:
  db-network: