Compare commits
No commits in common. "3f637dbab34e1ce1eade5da3165fb3eaa6a834d5" and "e845705829dfa754914c5b223297d8c43105fbff" have entirely different histories.
3f637dbab3
...
e845705829
8 changed files with 3 additions and 233 deletions
|
@ -1,48 +0,0 @@
|
|||
name: Build and push docker image
|
||||
|
||||
# start workflow every time a tag/release is created
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
defaults:
|
||||
run:
|
||||
working-directory: /tmp
|
||||
|
||||
# build the docker container
|
||||
steps:
|
||||
- name: ✨ Installing just command runner
|
||||
run: |
|
||||
# download and extract just to /bin/just
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /bin
|
||||
just --help || echo "Error: 'just' wasn't found. Maybe the download failed?"
|
||||
|
||||
- name: ⬇️ Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: 🐋 Build Container
|
||||
run: |
|
||||
# extract tag name without the prefix
|
||||
export TAG=$(echo "${{ github.ref }}" | sed 's/refs\/tags\///')
|
||||
# build the container
|
||||
just -f /workspace/sangelo/website/Justfile build "${TAG}"
|
||||
|
||||
- name: 🐳 Publish Container
|
||||
run: |
|
||||
export TAG=$(echo "${{ github.ref }}" | sed 's/refs\/tags\///')
|
||||
echo "${{ secrets.PUBLISH_TOKEN }}" | docker login gitpot.dev -u sangelo --password-stdin
|
||||
docker push "gitpot.dev/sangelo/website:${TAG}"
|
||||
|
||||
# publish tag latest as well
|
||||
if echo "${{ github.ref }}" | grep -q "refs/tags/"; then
|
||||
docker tag "gitpot.dev/sangelo/website:${TAG}" "gitpot.dev/sangelo/website:latest"
|
||||
docker push "gitpot.dev/sangelo/website:latest"
|
||||
fi
|
35
Dockerfile
35
Dockerfile
|
@ -1,35 +0,0 @@
|
|||
# Builder stage
|
||||
FROM node:20-alpine AS builder
|
||||
|
||||
# Set the working directory in the container
|
||||
WORKDIR /app
|
||||
|
||||
# Copy the repository contents into the container
|
||||
COPY . .
|
||||
|
||||
# Install dependencies and build the site. Output directory will be /app/build
|
||||
RUN yarn install && yarn run build
|
||||
|
||||
# Final stage
|
||||
FROM caddy:2-alpine
|
||||
|
||||
# Set the working directory in the container
|
||||
WORKDIR /web
|
||||
|
||||
# Copy the build directory from the builder stage to /web
|
||||
COPY --from=builder /app/build /web
|
||||
|
||||
# Caddyfile configuration to serve files from /web
|
||||
RUN echo -e ":80 {\n root * /web\n file_server\n}" > /etc/caddy/Caddyfile
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
|
||||
# Start Caddy with the specified Caddyfile
|
||||
CMD ["caddy", "run", "--config", "/etc/caddy/Caddyfile", "--adapter", "caddyfile"]
|
||||
|
||||
# Description for docker container
|
||||
LABEL description="Sangelo's Space website, packaged as a docker container, with the Caddy webserver."
|
||||
|
||||
# Remove intermediate images after build
|
||||
ONBUILD RUN rm -rf /app
|
84
Justfile
84
Justfile
|
@ -1,84 +0,0 @@
|
|||
# settings
|
||||
set dotenv-load
|
||||
|
||||
# defaults
|
||||
default_runner := 'docker'
|
||||
default_tag := 'latest'
|
||||
default_image := 'gitpot.dev/sangelo/website:latest'
|
||||
|
||||
# run development server by default
|
||||
default: dev
|
||||
|
||||
# aliases
|
||||
alias c := clean
|
||||
alias b := build
|
||||
alias r := run
|
||||
alias d := dev
|
||||
alias p := preview
|
||||
|
||||
# building
|
||||
|
||||
# run all docker related recipes (clean, build, run) (default runner: docker)
|
||||
all tag=default_tag runner=default_runner:
|
||||
just -f {{justfile()}} clean {{runner}} {{tag}}
|
||||
just -f {{justfile()}} build {{tag}} {{runner}}
|
||||
just -f {{justfile()}} run {{tag}} {{runner}}
|
||||
|
||||
# clean containers, images and temporary svelte dirs with specified runner (default runner: docker)
|
||||
clean runner=default_runner tag=default_tag:
|
||||
@echo "Cleaning dev environment..."
|
||||
rm -rf build/ .svelte-kit/
|
||||
@echo "Cleaning containers with '{{runner}}'..."
|
||||
TAG="{{tag}}" {{runner}} compose -f docker-compose.build.yml down
|
||||
@echo "Cleaning images with '{{runner}}'..."
|
||||
just -f {{justfile()}} _clean_images {{runner}}
|
||||
|
||||
# clean images function
|
||||
_clean_images runner=default_runner:
|
||||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
image_ids=$({{runner}} image ls | grep gitpot.dev/sangelo/website | awk '{print $3}')
|
||||
if [ -n "$image_ids" ]; then
|
||||
for image_id in $image_ids; do
|
||||
{{runner}} image rm $image_id
|
||||
echo "Image with ID $image_id deleted successfully."
|
||||
done
|
||||
else
|
||||
echo "No images matching the repository and tag found."
|
||||
fi
|
||||
|
||||
# build container image with specified runner (default runner: docker)
|
||||
build tag=default_tag runner=default_runner:
|
||||
@echo "Running with '{{runner}}' and tagging as '{{tag}}'..."
|
||||
TAG="{{tag}}" {{runner}} compose -f docker-compose.build.yml build --no-cache
|
||||
|
||||
# run container image with specified runner (default runner: docker)
|
||||
run tag=default_tag runner=default_runner:
|
||||
@echo "Running with '{{runner}}'..."
|
||||
TAG={{tag}} {{runner}} compose -f docker-compose.build.yml up -d --force-recreate
|
||||
@# watch -n 1 {{runner}} compose -f docker-compose.build.yml ps
|
||||
|
||||
publish image=default_image runner=default_runner:
|
||||
@echo "Publishing with '{{runner}}'..."
|
||||
@# log into gitpot
|
||||
echo "$GITPOT_TOKEN" | {{runner}} login gitpot.dev -u $GITPOT_USERNAME --password-stdin
|
||||
@# push the specified image to the container registry
|
||||
{{runner}} push {{image}}
|
||||
@echo "Published {{image}} successfuly! Use '{{runner}} pull {{image}}' to pull the container."
|
||||
|
||||
# development
|
||||
|
||||
# install dependencies
|
||||
_install:
|
||||
yarn install
|
||||
|
||||
# run vite dev server
|
||||
dev: _install
|
||||
@echo "Running vite development server..."
|
||||
yarn run dev --open
|
||||
|
||||
# run vite preview server
|
||||
preview: _install
|
||||
@echo "Running vite preview server..."
|
||||
yarn run build
|
||||
yarn run preview --open
|
50
README.md
50
README.md
|
@ -8,20 +8,6 @@ Feel free to explore!
|
|||
You're welcome to contribute to this website if you have a Lunivity account (see homepage for details if registrations aren't open).<br>
|
||||
Once you fork and clone the repository, follow the next steps.
|
||||
|
||||
If you have `just` installed, setting up is pretty easy:
|
||||
|
||||
```bash
|
||||
# setup dependencies and run dev server
|
||||
just
|
||||
|
||||
# you can also run `just dev`
|
||||
just dev
|
||||
```
|
||||
|
||||
View a list of all possible `just` recipes with `just -l`.
|
||||
|
||||
Otherwise, if you don't already have or don't want to install `just`, you can run the commands manually:
|
||||
|
||||
```bash
|
||||
# install dependencies
|
||||
yarn install
|
||||
|
@ -37,44 +23,14 @@ Once you've made your changes, you can create a Pull Request and I'll make sure
|
|||
|
||||
## Building
|
||||
|
||||
### Build locally
|
||||
|
||||
To create a production version of this website without docker:
|
||||
To create a production version of this website:
|
||||
|
||||
```bash
|
||||
# automatically build & preview
|
||||
just preview
|
||||
|
||||
# or, manually build
|
||||
yarn run build
|
||||
```
|
||||
|
||||
You can then preview the production build locally with `yarn run preview --open`.
|
||||
|
||||
The files will be available in the repo, in the `build/` directory.
|
||||
|
||||
### Build with Docker
|
||||
|
||||
To build a docker container image with `just`:
|
||||
|
||||
```bash
|
||||
# build and run container image with docker, tag: latest
|
||||
just build
|
||||
|
||||
# build with podman
|
||||
just build <tag> podman
|
||||
|
||||
# clean, build, and run container image with docker, tag: latest
|
||||
just all
|
||||
# clean, build, and run container image with podman, tag: dev
|
||||
just all dev podman
|
||||
```
|
||||
|
||||
You can preview the produced docker build with `just run [tag] [runner]`.
|
||||
You can preview the production build with `yarn run preview`.
|
||||
|
||||
## License
|
||||
|
||||
You can view this project's source code license [here](./LICENSE).
|
||||
|
||||
All assets (images, logos, etc.) created by me (Sangelo) are Copyright (c) 2019-2024 Sangelo unless otherwise stated.<br>
|
||||
Brand logos and icons (such as Discord, Github, YouTube, etc.) are trademarked by and copyright of their respective owners.
|
||||
You can view this project's license [here](./LICENSE).
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
podman compose -f docker-compose.build.yml down && \
|
||||
#podman compose -f docker-compose.build.yml rm --all && \
|
||||
podman compose -f docker-compose.build.yml build --no-cache && \
|
||||
podman compose -f docker-compose.build.yml up -d --force-recreate && \
|
||||
watch -n 1 podman compose -f docker-compose.build.yml ps
|
5
build.sh
5
build.sh
|
@ -1,5 +0,0 @@
|
|||
sudo docker compose -f docker-compose.build.yml down && \
|
||||
#sudo docker compose -f docker-compose.build.yml rm --all && \
|
||||
sudo docker compose -f docker-compose.build.yml build --no-cache && \
|
||||
sudo docker compose -f docker-compose.build.yml up -d --force-recreate && \
|
||||
watch -n 1 sudo docker compose -f docker-compose.build.yml ps
|
|
@ -1,9 +0,0 @@
|
|||
services:
|
||||
web:
|
||||
image: gitpot.dev/sangelo/website:${TAG}
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
no_cache: true
|
||||
ports:
|
||||
- "3000:80"
|
Loading…
Reference in a new issue