Skip to content

Commit

Permalink
Replace dockergiant with epartment
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaurense committed Aug 26, 2024
1 parent 7a22bee commit 1f6ed7f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion commands/env-init.help
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ROLL_USAGE=$(cat <<EOF
local Declares the docker-compose version and labels the project
network allowing RollDev to recognize it. Must be coupled with
per-project configuration. See documentation for details:
https://dockergiant.github.io/rolldev/environments/types.html#local
https://epartment.github.io/rolldev/environments/types.html#local
magento2 Nginx, varnish, php-fpm, db (mariadb), elasticsearch, redis,
and rabbitmq services pre configured for Magento 2; on macOS
Expand Down
2 changes: 1 addition & 1 deletion commands/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
echo "nameserver 127.0.0.1" | sudo tee /etc/resolver/test >/dev/null
fi
else
warning "Manual configuration required for Automatic DNS resolution: ttps://dockergiant.github.io/rolldev/configuration/dns-resolver.html"
warning "Manual configuration required for Automatic DNS resolution: https://epartment.github.io/rolldev/configuration/dns-resolver.html"
fi

## generate rsa keypair for authenticating to roll sshd service
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Change Log

See the full change log in GitHub: [https://github.com/dockergiant/rolldev/releases](https://github.com/dockergiant/rolldev/releases)
See the full change log in GitHub: [https://github.com/epartment/rolldev/releases](https://github.com/epartment/rolldev/releases)
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
master_doc = 'index'

project = 'RollDev'
copyright = '2023 by DockerGiant.'
copyright = '2024 by Epartment.'
author = ''
version = ''
release = ''
Expand Down
2 changes: 1 addition & 1 deletion docs/environments/types.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Environment Types

RollDev currently supports three environment types. These types are passed to `env-init` when configuring a project for local development for the first time. This list of environment types can also be seen by running `roll env-init --help` on your command line. The `docker-compose` configuration used to assemble each environment type can be found in the [environments directory](https://github.com/dockergiant/rolldev/tree/master/environments) on Github.
RollDev currently supports three environment types. These types are passed to `env-init` when configuring a project for local development for the first time. This list of environment types can also be seen by running `roll env-init --help` on your command line. The `docker-compose` configuration used to assemble each environment type can be found in the [environments directory](https://github.com/epartment/rolldev/tree/master/environments) on Github.

## Local

Expand Down
2 changes: 1 addition & 1 deletion docs/images.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Docker Images

Each of the docker images used by RollDev environments are published on GitHub Container Registry (GHCR): [https://ghcr.io/dockergiant/rolldev](https://ghcr.io/dockergiant/rolldev). Source files used to build these images may be found in the `images` directory of the main project repository. Github Actions are used to automatically build and push new images to GHCR when image sources are modified. Please refer to the repositories on GHCR for a list of available image versions and tags.
Each of the docker images used by RollDev environments are published on GitHub Container Registry (GHCR): [https://ghcr.io/epartment/rolldev](https://ghcr.io/epartment/rolldev). Source files used to build these images may be found in the `images` directory of the main project repository. Github Actions are used to automatically build and push new images to GHCR when image sources are modified. Please refer to the repositories on GHCR for a list of available image versions and tags.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ caption: About RollDev
changelog
images
Github Project <https://github.com/dockergiant/rolldev>
Github Project <https://github.com/epartment/rolldev>
```
8 changes: 4 additions & 4 deletions docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ This can be corrected via Preferences -> Resources -> Advanced -> Memory. While

RollDev may be installed via [Homebrew](https://brew.sh/) on both macOS and Linux hosts:

brew install dockergiant/roll/roll
brew install epartment/roll/roll
roll svc up

### Updating via Homebrew

RollDev is updated like other [Homebrew](https://brew.sh/) software by running brew upgrade:

brew upgrade dockergiant/roll/roll
brew upgrade epartment/roll/roll
roll svc restart

## Alternative (Manual) Installation
Expand All @@ -35,7 +35,7 @@ RollDev may be installed by cloning the repository to the directory of your choi

sudo mkdir /opt/roll
sudo chown $(whoami) /opt/roll
git clone -b main https://github.com/dockergiant/rolldev.git /opt/roll
git clone -b main https://github.com/epartment/rolldev.git /opt/roll
echo 'export PATH="/opt/roll/bin:$PATH"' >> ~/.bashrc
PATH="/opt/roll/bin:$PATH"
roll svc up
Expand All @@ -61,7 +61,7 @@ Launch wsl from your terminal of choice.

wsl
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install dockergiant/roll/roll
brew install epartment/roll/roll
roll svc up

In order for DNS entries to be resolved either add them to your Windows hosts file or add 127.0.0.1 as the first DNS server in your current network adapter in Windows.
Expand Down

0 comments on commit 1f6ed7f

Please sign in to comment.