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 extra_hosts from Docker Compose #229

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
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
8 changes: 0 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ services:
restart: always
ports:
- ${BACKEND_PUBLISH_PORT}:80
extra_hosts:
- host.docker.internal:host-gateway

mss-notifier:
container_name: mss-notifier
Expand All @@ -24,26 +22,20 @@ services:
restart: always
ports:
- ${NOTIFIER_PUBLISH_PORT}:80
extra_hosts:
- host.docker.internal:host-gateway

mss-telegram:
container_name: mss-telegram
image: mss-telegram:latest
build:
context: ./telegram
restart: always
extra_hosts:
- host.docker.internal:host-gateway

mss-scrapper:
container_name: mss-scrapper
image: mss-scrapper:latest
build:
context: ./scrapper
restart: always
extra_hosts:
- host.docker.internal:host-gateway

mss-frontend:
container_name: mss-frontend
Expand Down