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
4 changes: 2 additions & 2 deletions doc/setup/1b_install_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ Create the required environment configuration files:

```bash
# Create main environment files in the parent directory
cp ../.env_example ../.env
cp ../.env.local_example ../.env.local
cp ../.env_example ~/.pyrit/.env
cp ../.env_local_example ~/.pyrit/.env.local

# Create container-specific settings
# Note: The example file uses underscores, but you copy it to a file with dots
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ services:
- data:/app/data
- ../assets:/app/assets
env_file:
- ../.env
- ../.env.local
- ~/.pyrit/.env
- ~/.pyrit/.env.local
- .env.container.settings
restart: unless-stopped
healthcheck:
Expand Down