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

chore: remove not recommended (and not needed) docker compose links #212

Merged
merged 1 commit into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
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
13 changes: 0 additions & 13 deletions docker-compose.devel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ services:
depends_on:
postgres:
condition: service_healthy
links:
- postgres

frontend-dev:
build:
Expand All @@ -23,17 +21,12 @@ services:
depends_on:
api:
condition: service_healthy
links:
- api

nginx:
image: docker.io/nginx:stable-alpine
depends_on:
api:
condition: service_healthy
links:
- api
- frontend-dev
volumes:
- "./docker/nginx-dynamic:/etc/nginx/conf.d/default.conf"
ports:
Expand All @@ -55,9 +48,6 @@ services:
depends_on:
api:
condition: service_healthy
links:
- postgres
- "mailhog:mail"

cron:
build:
Expand All @@ -72,9 +62,6 @@ services:
ABRECHNUNG_EMAIL__HOST: mail
ABRECHNUNG_EMAIL__PORT: 1025
ABRECHNUNG_EMAIL__MODE: smtp
links:
- postgres
- "mailhog:mail"

postgres:
image: docker.io/postgres:14-alpine
Expand Down
6 changes: 0 additions & 6 deletions docker-compose.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,15 @@ services:
depends_on:
api:
condition: service_healthy
links:
- api

mailer:
extends:
file: docker-compose.base.yaml
service: mailer
image: quay.io/abrechnung/api:latest-release
links:
- api

cron:
extends:
file: docker-compose.base.yaml
service: cron
image: quay.io/abrechnung/api:latest-release
links:
- api
Loading