Delete superfluous network definition

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.
This commit is contained in:
Leopere 2021-12-29 13:44:05 -05:00 committed by GitHub
commit 7ccc908dda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: