You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+27-6
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
This repository contains a collection of ready-to-use **Docker Compose** files designed to help developers quickly set up and run various applications and development environments with minimal effort. Whether you’re spinning up a database, a full-stack web app, or other commonly used tools, these pre-configured files make the process seamless.
4
4
5
-
-[Healthchecks](https://docs.linuxserver.io/images/docker-healthchecks) - A watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.
-[Healthchecks](https://docs.linuxserver.io/images/docker-healthchecks) - A watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.
7
7
-[Cloudflared](https://github.com/WisdomSky/Cloudflared-web) - Cloudflare Tunnels in a Web UI
8
8
-[Dash.](https://github.com/MauriceNino/dashdot) - A simple, modern server dashboard, primarily used by smaller private server
@@ -27,12 +27,33 @@ This repository contains a collection of ready-to-use **Docker Compose** files d
27
27
-[VaultWarden](https://github.com/dani-garcia/vaultwarden) - All your passwords in your control!
28
28
-[Wireguard](https://github.com/WeeJeWel/wg-easy/) - VPN server for your homeserver
29
29
30
-
## Network
31
-
To create a named Docker network for containers, run the following command:
30
+
## Volume
31
+
32
+
Before you run the Docker Compose file, you need to specify the volume path for the container. The volume path is the location where the container will store its data. You can specify the volume path in the `.env` file.
33
+
34
+
For example, to specify the volume path for the `nextcloud` container, you can add the following line to the `.env` file:
To create a named Docker network for containers, specify the network name and options in the `docker-compose` file.
43
+
44
+
For example:
45
+
46
+
```yaml
47
+
networks:
48
+
default:
49
+
name: nextcloud
50
+
driver: bridge
35
51
```
36
52
37
-
> In this case, the network is named `my-network`. You can change it to your desired name.
38
-
# docker
53
+
> By defining the default network, all services in the Compose file will use this network unless explicitly assigned to another one.
54
+
55
+
## Time Zone and PUID/PGID
56
+
57
+
In some cases, you may need to specify the time zone and PUID/PGID for the container.
58
+
59
+
You can specify the time zone and PUID/PGID for the container in the `.env` file. The time zone is the location where the container will run, and the PUID/PGID is the user ID and group ID of the container.
0 commit comments