Skip to content

Commit

Permalink
whatever
Browse files Browse the repository at this point in the history
  • Loading branch information
loonsies committed Jan 12, 2025
1 parent 125405a commit e8beb65
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Moogly build and push

env:
REGISTRY: docker.io
IMAGE_NAME: ${{ secrets.DOCKER_USERNAME }}/moogly

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout repository
uses: actions/checkout@v3
-
name: Log in to Docker Hub
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- id: string
uses: ASzc/change-string-case-action@v2
with:
string: ${{ env.IMAGE_NAME }}
-
name: Generate random tag
id: random_tag
run: echo "tag=$(openssl rand -hex 6)" >> $GITHUB_ENV
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: true
tags: ${{ env.REGISTRY }}/${{ steps.string.outputs.lowercase }}:${{ env.tag }}, ${{ env.REGISTRY }}/${{ steps.string.outputs.lowercase }}:latest
Binary file added assets/moogly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions moogly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0"?>
<Container version="2">
<Name>Moogly</Name>
<Repository>melones/moogly:latest</Repository>
<Registry>https://github.com/senolem/moogly</Registry>
<Network>nas</Network>
<MyIP/>
<Shell>bash</Shell>
<Privileged>false</Privileged>
<Overview>Moogly FC Bot</Overview>
<WebUI/>
<TemplateURL/>
<Icon>https://raw.githubusercontent.com/ich777/docker-templates/master/ich777/images/valheim.png</Icon>
<ExtraParams>--restart=unless-stopped</ExtraParams>
<PostArgs/>
<CPUset/>
<DateInstalled>1735568335</DateInstalled>
<Requires/>
<Config Name="Moogly" Target="/moogly" Default="" Mode="rw" Description="" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/moogly</Config>
</Container>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e8beb65

Please sign in to comment.