atlas-hq 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/docker-compose.yml +2 -10
  2. package/package.json +2 -2
@@ -37,10 +37,7 @@ services:
37
37
 
38
38
  # ── API ─────────────────────────────────────────────────────────────────────
39
39
  atlas-hq-api:
40
- build:
41
- context: .
42
- dockerfile: docker/Dockerfile.api
43
- image: atlas-hq-api:local
40
+ image: nordinit/atlas-hq-api:latest
44
41
  container_name: atlas-hq-api
45
42
  restart: unless-stopped
46
43
  ports:
@@ -61,12 +58,7 @@ services:
61
58
 
62
59
  # ── UI ──────────────────────────────────────────────────────────────────────
63
60
  atlas-hq-ui:
64
- build:
65
- context: .
66
- dockerfile: docker/Dockerfile.ui
67
- args:
68
- NEXT_PUBLIC_API_URL: "${NEXT_PUBLIC_API_URL:-http://localhost:3501}"
69
- image: atlas-hq-ui:local
61
+ image: nordinit/atlas-hq-ui:latest
70
62
  container_name: atlas-hq-ui
71
63
  restart: unless-stopped
72
64
  ports:
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "atlas-hq",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "CLI launcher for Atlas HQ — task management for AI agent teams",
5
5
  "license": "MIT",
6
6
  "bin": {
7
- "atlas-hq": "./bin/cli.js"
7
+ "atlas-hq": "bin/cli.js"
8
8
  },
9
9
  "type": "module",
10
10
  "engines": {