mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
* Add yarn.lock to .gitignore * Tweak announcementBar message * Add demo link to docs homepage * chore(docs): logo-meaning page cleanup * chore(docs): support page cleanup * chore(docs): tech-stack page cleanup * chore(docs): requirements page cleanup * Update main README warning to match docs site * Add clearer documentation link to main README * chore(docs): one-step-install page cleanup * chore(docs): Security: remove example JWT_SECRET value * chore(docs): recommended-install page cleanup * chore(docs): portainer-install page cleanup * chore(docs): unraid-install page cleanup
29 lines
1.3 KiB
Markdown
29 lines
1.3 KiB
Markdown
---
|
|
sidebar_position: 2
|
|
---
|
|
|
|
# One-step installation
|
|
|
|
:::caution
|
|
This method is for evaluation purposes only. It is not recommended for production use. For production usage, please refer to the recommended installation method [here](/docs/installation/recommended-installation).
|
|
:::
|
|
|
|
In the shell, from a directory of your choice, run the following command:
|
|
|
|
```bash
|
|
curl -o- https://raw.githubusercontent.com/immich-app/immich/main/install.sh | bash
|
|
```
|
|
|
|
The script will perform the following actions:
|
|
|
|
1. Download [docker-compose.yml](https://github.com/immich-app/immich/blob/main/docker/docker-compose.yml), and the [.env](https://github.com/immich-app/immich/blob/main/docker/.env.example) file from the main branch of the [repository](https://github.com/immich-app/immich).
|
|
2. Populate the `.env` file with necessary information based on the current directory path.
|
|
3. Start the containers.
|
|
|
|
The web application will be available at `http://<machine-ip-address>:2283`, and the server URL for the mobile app will be `http://<machine-ip-address>:2283/api`
|
|
|
|
The directory which is used to store the library files is `./immich-data` relative to the current directory.
|
|
|
|
:::tip
|
|
For more information on how to use the application, please refer to the [Post Installation](/docs/usage/post-installation) guide.
|
|
:::
|