Skip to content

Commit c35b89e

Browse files
committedJan 8, 2025
refactor
1 parent f94b1a3 commit c35b89e

File tree

111 files changed

+2400
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+2400
-6
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.env

‎README.md

+27-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
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.
44

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.
65
- [Activepieces](https://github.com/activepieces/activepieces) - True zapier alternative.
6+
- [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.
77
- [Cloudflared](https://github.com/WisdomSky/Cloudflared-web) - Cloudflare Tunnels in a Web UI
88
- [Dash.](https://github.com/MauriceNino/dashdot) - A simple, modern server dashboard, primarily used by smaller private server
99
- [Dockge](https://github.com/louislam/dockge) - Docker compose.yaml stack-oriented manager.
@@ -27,12 +27,33 @@ This repository contains a collection of ready-to-use **Docker Compose** files d
2727
- [VaultWarden](https://github.com/dani-garcia/vaultwarden) - All your passwords in your control!
2828
- [Wireguard](https://github.com/WeeJeWel/wg-easy/) - VPN server for your homeserver
2929

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:
3235

3336
```bash
34-
docker network create my-network --driver=bridge --subnet=172.172.0.0/16 --gateway=172.172.0.1
37+
VOLUME_PATH=/mnt/docker/nextcloud
38+
```
39+
40+
## Network
41+
42+
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
3551
```
3652
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

Comments
 (0)