We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70ae93c commit 024a0c4Copy full SHA for 024a0c4
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+on: push
2
+
3
+jobs:
4
+ publish:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - uses: docker/setup-buildx-action@v3
9
+ - uses: docker/login-action@v3
10
+ with:
11
+ registry: ghcr.io
12
+ username: ${{ github.repository_owner }}
13
+ password: ${{ secrets.GITHUB_TOKEN }}
14
+ - run: docker compose alpha publish ghcr.io/withlogicco/postgres
15
16
+ config:
17
+ needs: publish
18
19
+ env:
20
+ COMPOSE_EXPERIMENTAL_OCI_REMOTE: "1"
21
22
23
+ - run: docker info
24
+ - run: docker compose version
25
+ - run: docker compose config --no-normalize
26
+ - run: docker compose alpha viz --image --indentation-size=4 --networks --ports --spaces
0 commit comments