@nx/docker 22.5.0 → 22.6.0-beta.0

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +70 -0
  3. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2017-2025 Narwhal Technologies Inc.
3
+ Copyright (c) 2017-2026 Narwhal Technologies Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/README.md ADDED
@@ -0,0 +1,70 @@
1
+ <p style="text-align: center;">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-dark.svg">
4
+ <img alt="Nx - Smart Monorepos · Fast Builds" src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-light.svg" width="100%">
5
+ </picture>
6
+ </p>
7
+
8
+ <div style="text-align: center;">
9
+
10
+ [![CircleCI](https://circleci.com/gh/nrwl/nx.svg?style=svg)](https://circleci.com/gh/nrwl/nx)
11
+ [![License](https://img.shields.io/npm/l/@nx/workspace.svg?style=flat-square)]()
12
+ [![NPM Version](https://badge.fury.io/js/nx.svg)](https://www.npmjs.com/package/nx)
13
+ [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()
14
+ [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
15
+ [![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
16
+ [![Join us on the Official Nx Discord Server](https://img.shields.io/discord/1143497901675401286?label=discord)](https://go.nx.dev/community)
17
+
18
+ </div>
19
+
20
+
21
+ <hr>
22
+
23
+ # Nx: Smart Monorepos · Fast Builds
24
+
25
+ Get to green PRs in half the time. Nx optimizes your builds, scales your CI, and fixes failed PRs. Built for developers and AI agents.
26
+
27
+ This package is a [Docker plugin for Nx](https://nx.dev/technologies/build-tools/docker/introduction).
28
+
29
+ **Experimental**: Support for Docker is currently experimental. Breaking changes may occur and not adhere to semver versioning.
30
+
31
+ ## Getting Started
32
+
33
+ ### Creating an Nx Workspace
34
+
35
+ **Using `npx`**
36
+
37
+ ```bash
38
+ npx create-nx-workspace
39
+ ```
40
+
41
+ **Using `npm init`**
42
+
43
+ ```bash
44
+ npm init nx-workspace
45
+ ```
46
+
47
+ **Using `yarn create`**
48
+
49
+ ```bash
50
+ yarn create nx-workspace
51
+ ```
52
+
53
+ ### Adding Nx to an Existing Repository
54
+
55
+ Run:
56
+
57
+ ```bash
58
+ npx nx@latest init
59
+ ```
60
+
61
+ ## Documentation & Resources
62
+
63
+ - [Nx.Dev: Documentation, Guides, Tutorials](https://nx.dev)
64
+ - [Intro to Nx](https://nx.dev/getting-started/intro)
65
+ - [Official Nx YouTube Channel](https://www.youtube.com/@NxDevtools)
66
+ - [Blog Posts About Nx](https://nx.dev/blog)
67
+
68
+ <p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
69
+ width="100%" alt="Nx - Smart Monorepos · Fast Builds"></a></p>
70
+
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nx/docker",
3
3
  "description": "The Nx Plugin for Docker to aid in containerizing projects.",
4
- "version": "22.5.0",
4
+ "version": "22.6.0-beta.0",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -51,12 +51,12 @@
51
51
  "executors": "./executors.json",
52
52
  "generators": "./generators.json",
53
53
  "dependencies": {
54
- "@nx/devkit": "22.5.0",
54
+ "@nx/devkit": "22.6.0-beta.0",
55
55
  "enquirer": "~2.3.6",
56
56
  "tslib": "^2.3.0"
57
57
  },
58
58
  "devDependencies": {
59
- "nx": "22.5.0"
59
+ "nx": "22.6.0-beta.0"
60
60
  },
61
61
  "types": "./src/index.d.ts"
62
62
  }