fix(style): prettier

This commit is contained in:
Shahrad Elahi 2024-04-20 23:22:26 +03:30
parent 4bbcbf140f
commit 83ddb4b86e
4 changed files with 10 additions and 12 deletions

View File

@ -47,7 +47,6 @@ jobs:
args: VERSION=${{ env.IMAGE_TAG }} args: VERSION=${{ env.IMAGE_TAG }}
tags: ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} tags: ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
docker-build: docker-build:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -2,7 +2,7 @@ name: Build Docker Image
on: on:
release: release:
types: [ created ] types: [created]
env: env:
BUILD_PLATFORMS: linux/amd64,linux/arm64 BUILD_PLATFORMS: linux/amd64,linux/arm64
@ -42,7 +42,6 @@ jobs:
platforms: ${{ env.BUILD_PLATFORMS }} platforms: ${{ env.BUILD_PLATFORMS }}
tags: ghcr.io/${{ env.IMAGE_NAME }}:latest,ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} tags: ghcr.io/${{ env.IMAGE_NAME }}:latest,ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
docker-build: docker-build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:

View File

@ -1,13 +1,13 @@
version: "3.8" version: '3.8'
services: services:
wireadmin: wireadmin:
image: wireadmin image: wireadmin
volumes: volumes:
- ./web/:/app/ - ./web/:/app/
ports: ports:
- "5173:5173" - '5173:5173'
environment: environment:
- WG_HOST=192.168.1.102 - WG_HOST=192.168.1.102
- UI_PASSWORD=password - UI_PASSWORD=password
extra_hosts: extra_hosts:
- "host.docker.internal:host-gateway" - 'host.docker.internal:host-gateway'

View File

@ -1,4 +1,4 @@
version: "3.8" version: '3.8'
services: services:
wireadmin: wireadmin:
environment: environment:
@ -15,8 +15,8 @@ services:
volumes: volumes:
- persist-data:/data - persist-data:/data
ports: ports:
- "51820:51820/udp" - '51820:51820/udp'
- "3000:3000/tcp" - '3000:3000/tcp'
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN
- SYS_MODULE - SYS_MODULE