Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 1 addition & 49 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,57 +53,9 @@ jobs:
with:
context: .
file: server/Dockerfile
platforms: linux/amd64,linux/arm64 # Build for both Intel and Apple Silicon
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

build-and-push-ui:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: galileoai/agent-control-ui
tags: |
# For version tags: v1.2.3 -> 1.2.3, 1.2, 1, latest
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
# For main branch: latest
type=raw,value=latest,enable={{is_default_branch}}
# For branches: branch name (sanitized)
type=ref,event=branch,enable=${{ github.ref != 'refs/heads/main' }}
# For PRs: pr-123
type=ref,event=pr

- name: Build and push
uses: docker/build-push-action@v5
with:
context: ui
file: ui/Dockerfile
platforms: linux/amd64,linux/arm64 # Build for both Intel and Apple Silicon
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha,scope=ui-image
cache-to: type=gha,mode=max,scope=ui-image
10 changes: 1 addition & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ services:
restart: unless-stopped

server:
platform: linux/amd64
image: galileoai/agent-control-server:latest
container_name: agent_control_server
ports:
Expand All @@ -58,14 +59,5 @@ services:
condition: service_healthy
restart: unless-stopped

ui:
image: galileoai/agent-control-ui:latest
container_name: agent_control_ui
ports:
- "4000:4000"
depends_on:
- server
restart: unless-stopped

volumes:
pgdata:
52 changes: 0 additions & 52 deletions ui/Dockerfile

This file was deleted.

Loading