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

Do not auto start few containers when Docker starts #205

Merged
merged 1 commit into from
Jun 21, 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
3 changes: 0 additions & 3 deletions 01_standalone_examples/prefect-integration/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ services:
database:
image: postgres:15.2-alpine
container_name: database-prefect
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
Expand All @@ -18,7 +17,6 @@ services:
server:
image: prefecthq/prefect:2.10.17-python3.11
container_name: server-prefect
restart: always
volumes:
- prefect:/root/.prefect
entrypoint: ["/opt/prefect/entrypoint.sh", "prefect", "server", "start"]
Expand All @@ -40,7 +38,6 @@ services:
agent:
image: prefecthq/prefect:2.10.17-python3.11
container_name: agent-prefect
restart: always
entrypoint: ["/opt/prefect/entrypoint.sh", "prefect", "agent", "start", "-q", "YOUR_WORK_QUEUE_NAME"]
environment:
- PREFECT_API_URL=http://server:4200/api
Expand Down
1 change: 0 additions & 1 deletion 02_lakefs_enterprise/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ services:
interval: 10s
retries: 5
start_period: 5s
restart: always

fluffy:
image: "${FLUFFY_REPO:-treeverse}/fluffy:${TAG:-0.4.0}"
Expand Down
Loading