2022-11-01 20:01:03 -05:00
---
2023-01-25 17:07:25 +01:00
sidebar_position: 20
2022-11-01 20:01:03 -05:00
---
2025-01-02 10:04:14 -06:00
# Install script [Experimental]
2022-11-01 20:01:03 -05:00
:::caution
2025-09-25 15:54:34 +01:00
This method is experimental and not currently recommended for production use. For production, please refer to installing with [Docker Compose ](/install/docker-compose.mdx ).
2022-11-01 20:01:03 -05:00
:::
2025-01-02 10:04:14 -06:00
## Requirements
2025-09-25 15:54:34 +01:00
Follow the [requirements page ](/install/requirements ) to get started.
2025-01-02 10:04:14 -06:00
2024-07-15 18:54:16 -04:00
The install script only supports Linux operating systems and requires Docker to be already installed on the system.
2025-01-02 10:04:14 -06:00
## Steps
2024-07-15 18:54:16 -04:00
2022-11-06 22:27:14 -05:00
In the shell, from a directory of your choice, run the following command:
2022-11-01 20:01:03 -05:00
```bash
curl -o- https://raw.githubusercontent.com/immich-app/immich/main/install.sh | bash
```
The script will perform the following actions:
2023-01-28 04:26:15 +01:00
1. Download [docker-compose.yml ](https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml ), and the [.env ](https://github.com/immich-app/immich/releases/latest/download/example.env ) file from the main branch of the [repository ](https://github.com/immich-app/immich ).
2024-04-08 19:01:57 -04:00
2. Start the containers.
2022-11-01 20:01:03 -05:00
2025-01-24 12:47:01 -05:00
The web application and mobile app will be available at `http://<machine-ip-address>:2283`
2022-11-01 20:01:03 -05:00
2024-04-08 19:01:57 -04:00
The directory which is used to store the library files is `./immich-app` relative to the current directory.
2022-11-01 20:01:03 -05:00
:::tip
2025-09-25 15:54:34 +01:00
For common next steps, see [Post Install Steps ](/install/post-install.mdx ).
2022-11-06 22:27:14 -05:00
:::