Skip to content

Commit

Permalink
Clean up Docker instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlgo11 committed May 20, 2024
1 parent 2d7a94a commit 270066a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
push: true
tags: |
carlgo11/guest-portal:dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ To run the captive portal, you will need:
version: '3.8'
services:
redis:
image: redis/redis-stack-server:latest
ports:
- "6379:6379"
image: redis:alpine
volumes:
- redis:/data
node:
Expand Down Expand Up @@ -89,9 +87,7 @@ If you wish to use this, follow these steps:
version: '3.8'
services:
redis:
image: redis/redis-stack-server:latest
ports:
- "6379:6379"
image: redis:alpine
volumes:
- redis:/data
node:
Expand Down

0 comments on commit 270066a

Please sign in to comment.