From 1d0cdb94d9703aeabe0639efd40e1785da9c01a1 Mon Sep 17 00:00:00 2001 From: Daddie0 <33762262+GoByeBye@users.noreply.github.com> Date: Mon, 28 Jul 2025 07:31:13 +0200 Subject: [PATCH] chore: rename from maybe to sure (#28) --- compose.example.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/compose.example.yml b/compose.example.yml index 7a7aea65d..41ff368ce 100644 --- a/compose.example.yml +++ b/compose.example.yml @@ -17,7 +17,7 @@ # # To run this, you should read the setup guide: # -# https://github.com/maybe-finance/maybe/blob/main/docs/hosting/docker.md +# https://github.com/we-promise/sure/blob/main/docs/hosting/docker.md # # Troubleshooting: # ---------------- @@ -46,7 +46,7 @@ x-rails-env: &rails_env services: web: - image: ghcr.io/maybe-finance/maybe:latest + image: ghcr.io/we-promise/sure:latest volumes: - app-storage:/rails/storage ports: @@ -60,10 +60,10 @@ services: redis: condition: service_healthy networks: - - maybe_net + - sure_net worker: - image: ghcr.io/maybe-finance/maybe:latest + image: ghcr.io/we-promise/sure:latest command: bundle exec sidekiq restart: unless-stopped depends_on: @@ -72,7 +72,7 @@ services: environment: <<: *rails_env networks: - - maybe_net + - sure_net db: image: postgres:16 @@ -87,7 +87,7 @@ services: timeout: 5s retries: 5 networks: - - maybe_net + - sure_net redis: image: redis:latest @@ -100,7 +100,7 @@ services: timeout: 5s retries: 5 networks: - - maybe_net + - sure_net volumes: app-storage: @@ -108,5 +108,5 @@ volumes: redis-data: networks: - maybe_net: + sure_net: driver: bridge