Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove network #583

Merged
merged 3 commits into from
Dec 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
services:
postgres:
command: -c 'max_connections=1000'
networks:
- battle-stadium-network
image: postgres:16
restart: unless-stopped
volumes:
Expand All @@ -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:
Expand All @@ -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:
Expand Down Expand Up @@ -81,8 +73,6 @@ services:

# RAILS API - PRODUCTION CONTAINER
backend-prod:
networks:
- battle-stadium-network
profiles:
- production
hostname: rails-api-container
Expand Down Expand Up @@ -115,7 +105,3 @@ services:

volumes:
postgres-data:

networks:
battle-stadium-network:
name: battle-stadium-network
Loading