Compare commits

..

No commits in common. "1978208b61ba095100090babb76a8ed2f7ba637f" and "534077bad37ecbc26ded540bc75bd7a278fa0a80" have entirely different histories.

3 changed files with 16 additions and 38 deletions

View file

@ -1,12 +1,17 @@
FROM docker.io/golang:1.22 as builder
WORKDIR /usr/src/app
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download && go mod verify
COPY . ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -v -o sanic ./...
RUN CGO_ENABLED=0 GOOS=linux go build -o /sanic
# -----
FROM builder AS tester
RUN go test -v ./...
# -----
@ -14,8 +19,8 @@ FROM scratch as runner
WORKDIR /
COPY --from=builder /usr/src/app/sanic /sanic
COPY --from=builder /usr/src/app/static /static
COPY --from=builder /sanic /sanic
COPY --from=builder /app/static /static
EXPOSE 8080

View file

@ -56,12 +56,12 @@ Install from the AUR:
yay -S sanic
```
### 🐳 Container
### Podman
Run as daemon:
```shell
podman run -d -v ./config.ini:/config.ini -p 8080:8080 registry.gitlab.com/XenGi/sanic:latest
podman run -d -v ./config.ini:/config.ini -p 8443:8443 registry.gitlab.com/XenGi/sanic:latest
```
## 🛠️ Development
@ -70,7 +70,7 @@ sanic is developed using [Nix][nix], but you can also just use the usual Golang
Run local [MPD][mpd] instance for testing with `make mpd`.
Update go dependencies like this:
Update go depdendencies like this:
```shell
go get -u # or `make update`
@ -94,7 +94,7 @@ nix build
### 🐧 w/o Nix
Use these Make targets for your convenience:
Use these Make targets for convenience:
- `run`: Run project
- `build`: Compile project

View file

@ -1,27 +0,0 @@
[Unit]
Description=sanic - chaos music control
[Container]
AutoUpdate=registry
ContainerName=sanic
Group=sanic
HealthCmd=/usr/bin/curl localhost:8080/echo
HealthInterval=2m
HealthOnFailure=restart
HealthRetries=5
HealthStartPeriod=1m
Image=registry.gitlab.com/xengi/sanic/sanic:latest
LogDriver=journald
Network=host
NoNewPrivileges=true
PublishPort=8080
Pull=always
User=sanic
Volume=/etc/sanic/config.ini:/config.ini
[Service}
Restart=always
TimeoutStartSec=900
[Install]
WantedBy=multi-user.target default.target