https://github.com/swarmpit/installer
Swarmpit installer
https://github.com/swarmpit/installer
docker docker-swarm docker-swarm-ui swarm
Last synced: 4 months ago
JSON representation
Swarmpit installer
- Host: GitHub
- URL: https://github.com/swarmpit/installer
- Owner: swarmpit
- Created: 2019-02-06T14:48:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2026-03-04T01:04:00.000Z (4 months ago)
- Last Synced: 2026-03-04T05:52:06.025Z (4 months ago)
- Topics: docker, docker-swarm, docker-swarm-ui, swarm
- Language: Shell
- Size: 25.4 KB
- Stars: 33
- Watchers: 1
- Forks: 13
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swarmpit installer
Swarmpit platform installer
For **1.9** release and older please refer to following [guide](https://github.com/swarmpit/installer/tree/8b947373547e977dab86760773f55bd1e3d1d4f5)
## Run
### Interactive mode
User is prompted to setup application from command line.
Example:
```{r, engine='bash', count_lines}
docker run -it --rm \
--name swarmpit-installer \
--volume /var/run/docker.sock:/var/run/docker.sock \
swarmpit/install:edge
```
### Non-interactive mode
Setup is done based on environment variables passed to installer.
Interactive mode must be set to 0 (disabled).
Example:
```{r, engine='bash', count_lines}
docker run -it --rm \
--name swarmpit-installer \
--volume /var/run/docker.sock:/var/run/docker.sock \
-e INTERACTIVE=0 \
-e STACK_NAME=swarmpit \
-e APP_PORT=888 \
swarmpit/install:edge
```
#### Parameters
##### Mandatory
- INTERACTIVE - must be set to **0** (disabled)
##### Optional
- STACK_NAME - default to **swarmpit**
- APP_PORT - default to **888**
- DB_VOLUME_DRIVER - default to **local**