Skip to content

Commit 70df6f7

Browse files
committed
adding post about nexcloud-update-3
1 parent 26f9777 commit 70df6f7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

_posts/2025-01-28-how-to-install-nextcloud-with-docker-compose-by-using-portainer.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ sudo usermod -aG docker $USER
3131
Log out and back in for this to take effect.
3232
```
3333
1. Install Portainer
34-
- Run Portainer Using Docker:
34+
- Run Portainer Using Docker:
3535
```
3636
docker volume create portainer_data
3737
docker run -d -p 8000:8000 -p 9443:9443 --name portainer \
3838
--restart=always -v /var/run/docker.sock:/var/run/docker.sock \
3939
-v portainer_data:/data portainer/portainer-ce:latest
4040
```
41-
- Access Portainer:
41+
- Access Portainer:
4242

4343
Open a browser and go to https://<your-server-ip>:9443.
4444
Follow the setup process to create an admin user.
4545

4646
4. Set Up Nextcloud Using Docker Compose in Portainer
47-
- Step 1: Create a Docker Compose Stack
47+
- Step 1: Create a Docker Compose Stack
4848
Log in to Portainer.
4949
Navigate to Stacks > Add Stack.
5050
Name your stack, e.g., nextcloud-stack.
5151

52-
- Step 2: Add the Compose Configuration
52+
- Step 2: Add the Compose Configuration
5353
Paste the following Docker Compose configuration in the editor:
5454
```
5555
version: '3.8'
@@ -86,17 +86,17 @@ volumes:
8686
db_data:
8787
Replace your_password and your_root_password with secure passwords.
8888
```
89-
- Step 3: Deploy the Stack
89+
- Step 3: Deploy the Stack
9090
Click Deploy the Stack.
9191
Portainer will pull the required images and start the containers.
92-
- 5. Access Nextcloud
92+
1. Access Nextcloud
9393
Open your browser and navigate to http://<your-server-ip>:8080.
9494

9595
Complete the Nextcloud setup wizard:
9696
Database host: db
9797
Database name: nextcloud
9898
Database user: nextclouduser
9999
Database password: your_password
100-
- 6. Secure with HTTPS (Optional)
100+
6. Secure with HTTPS (Optional)
101101

102102
To secure Nextcloud, you can set up a reverse proxy with Nginx or Traefik using Let's Encrypt. Let me know if you want guidance on that!

0 commit comments

Comments
 (0)