diff --git a/.github/actions/docker-prepare-workspace/action.yaml b/.github/actions/docker-prepare-workspace/action.yaml index b19a3be..7362e2a 100644 --- a/.github/actions/docker-prepare-workspace/action.yaml +++ b/.github/actions/docker-prepare-workspace/action.yaml @@ -65,6 +65,8 @@ runs: - name: Start Docker Compose Services shell: bash + env: + GITHUB_ACTOR: ${{ github.actor }} run: | docker compose up -d --no-build --no-deps --quiet-pull --wait ${{ steps.compose-services.outputs.services }} diff --git a/.gitignore b/.gitignore index 1a6507c..06ffafe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .env +!.env.dist .npmrc .pnpm-store build diff --git a/README.md b/README.md index 1f7f951..db6124f 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ This template offers the following things, ready to use, in a dockerized environ Create with Svelte 4 (default): ```sh -npx degit bavragor/vite-svelte-docker-template app-name -npx degit bavragor/vite-svelte-docker-template#release@svelte4.2 svelte4-app-name +npx degit tony-stark-eth/vite-svelte-docker-template app-name +npx degit tony-stark-eth/vite-svelte-docker-template#release@svelte4.2 svelte4-app-name ``` Create with Svelte 5 (experimental): diff --git a/docker-compose.yaml b/docker-compose.yaml index 8036e14..fdae6e9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,6 @@ services: app: - image: ghcr.io/bavragor/${DOCKER_IMAGE_TAG:-vite-svelte-docker-template:latest} + image: ghcr.io/${GITHUB_ACTOR:-tony-stark-eth}/${DOCKER_IMAGE_TAG:-vite-svelte-docker-template:latest} container_name: docker-pnpm-svelte build: context: .