diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index d36447f..b485cdb 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -47,7 +47,6 @@ jobs: args: VERSION=${{ env.IMAGE_TAG }} tags: ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} - docker-build: runs-on: ubuntu-latest @@ -73,4 +72,4 @@ jobs: push: true platforms: ${{ env.BUILD_PLATFORMS }} args: VERSION=${{ env.IMAGE_TAG }} - tags: docker.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} \ No newline at end of file + tags: docker.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} diff --git a/.github/workflows/release-image.yaml b/.github/workflows/release-image.yaml index ab09774..7acf9af 100644 --- a/.github/workflows/release-image.yaml +++ b/.github/workflows/release-image.yaml @@ -2,7 +2,7 @@ name: Build Docker Image on: release: - types: [ created ] + types: [created] env: BUILD_PLATFORMS: linux/amd64,linux/arm64 @@ -42,7 +42,6 @@ jobs: platforms: ${{ env.BUILD_PLATFORMS }} tags: ghcr.io/${{ env.IMAGE_NAME }}:latest,ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} - docker-build: runs-on: ubuntu-latest permissions: @@ -74,4 +73,4 @@ jobs: file: ./Dockerfile push: true platforms: ${{ env.BUILD_PLATFORMS }} - tags: docker.io/${{ env.IMAGE_NAME }}:latest,docker.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} \ No newline at end of file + tags: docker.io/${{ env.IMAGE_NAME }}:latest,docker.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 0d3e1e8..acba239 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -1,13 +1,13 @@ -version: "3.8" +version: '3.8' services: wireadmin: image: wireadmin volumes: - ./web/:/app/ ports: - - "5173:5173" + - '5173:5173' environment: - WG_HOST=192.168.1.102 - UI_PASSWORD=password extra_hosts: - - "host.docker.internal:host-gateway" + - 'host.docker.internal:host-gateway' diff --git a/docker-compose.yml b/docker-compose.yml index 37836ef..0ac7b6d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,4 @@ -version: "3.8" +version: '3.8' services: wireadmin: environment: @@ -15,8 +15,8 @@ services: volumes: - persist-data:/data ports: - - "51820:51820/udp" - - "3000:3000/tcp" + - '51820:51820/udp' + - '3000:3000/tcp' cap_add: - NET_ADMIN - SYS_MODULE @@ -26,4 +26,4 @@ services: volumes: persist-data: - driver: local \ No newline at end of file + driver: local