From 184b9a7cb21947e183cc8fa0b16c6852b75b061a Mon Sep 17 00:00:00 2001 From: thatguyinabeanie Date: Sun, 15 Dec 2024 15:09:43 -0600 Subject: [PATCH] remove network --- docker-compose.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 484be6cc..6b921a27 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,6 @@ services: postgres: command: -c 'max_connections=1000' - networks: - - battle-stadium-network image: postgres:16 restart: unless-stopped volumes: @@ -15,16 +13,12 @@ services: - 5432:5432 redis: - networks: - - battle-stadium-network image: redis:7 restart: unless-stopped ports: - 6379:6379 sidekiq: - networks: - - battle-stadium-network image: thatguyinabeanie/battle-stadium:dev-latest command: zsh -c "(bundle check || bundle install) && bundle exec sidekiq" environment: @@ -44,8 +38,6 @@ services: # RAILS API - DEVELOPMENT CONTAINER backend: - networks: - - battle-stadium-network hostname: rails-api-container image: thatguyinabeanie/battle-stadium:dev-latest environment: @@ -81,8 +73,6 @@ services: # RAILS API - PRODUCTION CONTAINER backend-prod: - networks: - - battle-stadium-network profiles: - production hostname: rails-api-container @@ -115,7 +105,3 @@ services: volumes: postgres-data: - -networks: - battle-stadium-network: - name: battle-stadium-network