mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
update default image name
This commit is contained in:
parent
7153fc8bb5
commit
2504510c61
4 changed files with 5 additions and 4 deletions
2
.github/workflows/docker-image-nightly.yml
vendored
2
.github/workflows/docker-image-nightly.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
||||||
- "*" # matches every branch that doesn't contain a '/'
|
- "*" # matches every branch that doesn't contain a '/'
|
||||||
- "*/*" # matches every branch containing a single '/'
|
- "*/*" # matches every branch containing a single '/'
|
||||||
- "**" # matches every branch
|
- "**" # matches every branch
|
||||||
- "!main" # excludes master
|
- "!main" # excludes main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-nightly:
|
build-nightly:
|
||||||
|
|
1
.github/workflows/docker-image.yml
vendored
1
.github/workflows/docker-image.yml
vendored
|
@ -158,5 +158,6 @@ jobs:
|
||||||
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ inputs.image_name }}:${{ steps.meta.outputs.version }}
|
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ inputs.image_name }}:${{ steps.meta.outputs.version }}
|
||||||
|
|
||||||
- name: Inspect image (old)
|
- name: Inspect image (old)
|
||||||
|
if: inputs.old_image_name != ''
|
||||||
run: |
|
run: |
|
||||||
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ inputs.old_image_name }}:${{ steps.meta.outputs.version }}
|
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ inputs.old_image_name }}:${{ steps.meta.outputs.version }}
|
||||||
|
|
|
@ -21,7 +21,7 @@ var agentComposeYAMLTemplate = template.Must(template.New("agent.compose.yml").P
|
||||||
|
|
||||||
const (
|
const (
|
||||||
DockerImageProduction = "ghcr.io/yusing/godoxy-agent:latest"
|
DockerImageProduction = "ghcr.io/yusing/godoxy-agent:latest"
|
||||||
DockerImageNightly = "yusing/godoxy-agent-nightly:latest"
|
DockerImageNightly = "ghcr.io/yusing/godoxy-agent:nightly"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
frontend:
|
frontend:
|
||||||
image: ghcr.io/yusing/go-proxy-frontend:latest
|
image: ghcr.io/yusing/godoxy-frontend:latest
|
||||||
container_name: godoxy-frontend
|
container_name: godoxy-frontend
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
network_mode: host # do not change this
|
network_mode: host # do not change this
|
||||||
|
@ -24,7 +24,7 @@ services:
|
||||||
# - 192.168.0.0/16
|
# - 192.168.0.0/16
|
||||||
# - 172.16.0.0/12
|
# - 172.16.0.0/12
|
||||||
app:
|
app:
|
||||||
image: ghcr.io/yusing/go-proxy:latest
|
image: ghcr.io/yusing/godoxy:latest
|
||||||
container_name: godoxy
|
container_name: godoxy
|
||||||
restart: always
|
restart: always
|
||||||
network_mode: host # do not change this
|
network_mode: host # do not change this
|
||||||
|
|
Loading…
Add table
Reference in a new issue