-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
#!/bin/sh | ||
|
||
docker tag localhost/boudicca-eventdb registry.slothyx.com/boudicca-eventdb | ||
docker tag localhost/boudicca-enricher registry.slothyx.com/boudicca-enricher | ||
docker tag localhost/boudicca-search registry.slothyx.com/boudicca-search | ||
docker tag localhost/boudicca-events-publisher-event-html registry.slothyx.com/boudicca-html | ||
docker tag localhost/boudicca-publisher-event-ical registry.slothyx.com/boudicca-ical | ||
docker tag localhost/boudicca-events-eventcollectors registry.slothyx.com/boudicca-eventcollectors | ||
docker tag localhost/boudicca-eventdb ghcr.io/boudicca-events/eventdb | ||
docker tag localhost/boudicca-enricher ghcr.io/boudicca-events/enricher | ||
docker tag localhost/boudicca-search ghcr.io/boudicca-events/search | ||
docker tag localhost/boudicca-events-publisher-event-html ghcr.io/boudicca-events/publisher-event-html | ||
docker tag localhost/boudicca-publisher-event-ical ghcr.io/boudicca-events/publisher-event-ical | ||
docker tag localhost/boudicca-events-eventcollectors ghcr.io/boudicca-events/eventcollectors | ||
|
||
echo "pushing eventdb" | ||
docker push registry.slothyx.com/boudicca-eventdb | ||
docker push ghcr.io/boudicca-events/eventdb | ||
echo "pushing enricher" | ||
docker push registry.slothyx.com/boudicca-enricher | ||
docker push ghcr.io/boudicca-events/enricher | ||
echo "pushing search" | ||
docker push registry.slothyx.com/boudicca-search | ||
docker push ghcr.io/boudicca-events/search | ||
echo "pushing html" | ||
docker push registry.slothyx.com/boudicca-html | ||
docker push ghcr.io/boudicca-events/publisher-event-html | ||
echo "pushing ical" | ||
docker push registry.slothyx.com/boudicca-ical | ||
docker push ghcr.io/boudicca-events/publisher-event-ical | ||
echo "pushing eventcollectors" | ||
docker push registry.slothyx.com/boudicca-eventcollectors | ||
docker push ghcr.io/boudicca-events/eventcollectors |