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

Simplifying docker registry paths #210

Merged
merged 2 commits into from
Apr 30, 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
2 changes: 1 addition & 1 deletion docker/ldap_authentication/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- docker_cache:/var/lib/docker
command: ["dockerd", "--host=tcp://0.0.0.0:2375"]
bagdb:
image: ghcr.io/swri-robotics/bag-database/bag-database:latest
image: ghcr.io/swri-robotics/bag-database:latest
networks:
- bagdb
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion docker/private_registry/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
volumes:
- registry:/var/lib/registry
bagdb:
image: ghcr.io/swri-robotics/bag-database/bag-database:latest
image: ghcr.io/swri-robotics/bag-database:latest
networks:
- bagdb
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion docker/reverse_proxy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
- docker_cache:/var/lib/docker
command: ["dockerd", "--host=tcp://0.0.0.0:2375"]
bagdb:
image: ghcr.io/swri-robotics/bag-database/bag-database:latest
image: ghcr.io/swri-robotics/bag-database:latest
networks:
- bagdb
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# in the templates via {{ site.myvariable }}.

title: Bag Database
email: preed@swri.org
email: swri-robotics@swri.org
description: >- # this means to ignore newlines until "baseurl:"
The Bag Database is a web-based application that makes it simple to catalogue
ROS bag files, search through them, and perform operations on them.
Expand Down
2 changes: 1 addition & 1 deletion docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ to everybody who has contributed to it.

The Bag Database's source code is hosted on GitHub at [https://github.com/swri-robotics/bag-database](https://github.com/swri-robotics/bag-database).

Pre-built Docker images are on Docker Hub at [https://ghcr.io/swri-robotics/bag-database/bag-database:latest](https://ghcr.io/swri-robotics/bag-database/bag-database:latest).
Pre-built Docker images are on Docker Hub at [https://ghcr.io/swri-robotics/bag-database:latest](https://ghcr.io/swri-robotics/bag-database:latest).

Let us know how it works for you!

Expand Down
2 changes: 1 addition & 1 deletion docs/installation/docker/without-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ docker run -d \
-e METADATA_TOPICS="/metadata" \
-e VEHICLE_NAME_TOPICS="/vehicle_name" \
-e GPS_TOPICS="/localization/gps, /gps, /imu/fix" \
ghcr.io/swri-robotics/bag-database/bag-database:latest
ghcr.io/swri-robotics/bag-database:latest
```

After the bag database has successfully started, the bag database should be
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ copy of the database container's volume.

As long as you're using the same version of PostgreSQL, upgrading should be
painless. Pull the latest version of the Bag Database image
(`docker pull ghcr.io/swri-robotics/bag-database/bag-database:latest`) and restarts its container;
(`docker pull ghcr.io/swri-robotics/bag-database:latest`) and restarts its container;
if there are any database schema changes, it will automatically update everything.

If you are also updating your PostgreSQL container, you will need to manually
Expand Down
Loading