Compare commits
10 Commits
c775af7734
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 7d98e67def | |||
| f4f2b4d2b1 | |||
| 2232847c8a | |||
| eddf2b7402 | |||
| d2742d9198 | |||
| 7c4453a75d | |||
| 7b3a56cbc8 | |||
| 9ca3cfcd8a | |||
| 74856495d9 | |||
| f20c2f002c |
35
gitea/docker-compose.yml
Normal file
35
gitea/docker-compose.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
services:
|
||||
server:
|
||||
image: gitea/gitea:latest
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- GITEA__database__DB_TYPE=postgres
|
||||
- GITEA__database__HOST=db:5432
|
||||
- GITEA__database__NAME=gitea
|
||||
- GITEA__database__USER=gitea
|
||||
- GITEA__database__PASSWD=gitea
|
||||
- ENABLE_PUSH_CREATE_USER=true
|
||||
- ENABLE_PUSH_CREATE_ORG=true
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /data/docker/gitea:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "222:22"
|
||||
depends_on:
|
||||
- db
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
|
||||
db:
|
||||
image: docker.io/library/postgres:14
|
||||
restart: on-failure
|
||||
environment:
|
||||
- POSTGRES_USER=gitea
|
||||
- POSTGRES_PASSWORD=gitea
|
||||
- POSTGRES_DB=gitea
|
||||
volumes:
|
||||
- /data/docker/postgres:/var/lib/postgresql/data
|
||||
20
minecraft/docker-compose.yml
Normal file
20
minecraft/docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
services:
|
||||
minecraft:
|
||||
image: itzg/minecraft-server
|
||||
pull_policy: daily
|
||||
tty: true
|
||||
stdin_open: true
|
||||
ports:
|
||||
- "25565:25565"
|
||||
environment:
|
||||
EULA: "TRUE"
|
||||
TZ: "Europe/London"
|
||||
UID: "1000"
|
||||
GID: "1000"
|
||||
TYPE: "PAPER"
|
||||
MEMORY: "8G"
|
||||
ENABLE_AUTOPAUSE: "false"
|
||||
MAX_TICK_TIME: "-1"
|
||||
volumes:
|
||||
# attach the relative directory 'data' to the container's /data path
|
||||
- /mnt/nvme/minecraft/data:/data
|
||||
@@ -20,8 +20,8 @@ services:
|
||||
# BORG_RETENTION_POLICY: --keep-within=7d --keep-weekly=4 --keep-monthly=6 # Allows to adjust borgs retention policy. See https://github.com/nextcloud/all-in-one#how-to-adjust-borgs-retention-policy
|
||||
# COLLABORA_SECCOMP_DISABLED: false # Setting this to true allows to disable Collabora's Seccomp feature. See https://github.com/nextcloud/all-in-one#how-to-disable-collaboras-seccomp-feature
|
||||
# FULLTEXTSEARCH_JAVA_OPTIONS: "-Xms1024M -Xmx1024M" # Allows to adjust the fulltextsearch java options. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-fulltextsearch-java-options
|
||||
- NEXTCLOUD_DATADIR=/media/disk/nextcloudaio/data # Allows to set the host directory for Nextcloud's datadir. ⚠️⚠️⚠️ Warning: do not set or adjust this value after the initial Nextcloud installation is done! See https://github.com/nextcloud/all-in-one#how-to-change-the-default-location-of-nextclouds-datadir
|
||||
- NEXTCLOUD_MOUNT=/media/disk/nextcloudaio/files # Allows the Nextcloud container to access the chosen directory on the host. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host
|
||||
- NEXTCLOUD_DATADIR=/data/docker/nextcloudaio/data # Allows to set the host directory for Nextcloud's datadir. ⚠️⚠️⚠️ Warning: do not set or adjust this value after the initial Nextcloud installation is done! See https://github.com/nextcloud/all-in-one#how-to-change-the-default-location-of-nextclouds-datadir
|
||||
- NEXTCLOUD_MOUNT=/data/docker/nextcloudaio/files # Allows the Nextcloud container to access the chosen directory on the host. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host
|
||||
# NEXTCLOUD_UPLOAD_LIMIT: 16G # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-upload-limit-for-nextcloud
|
||||
# NEXTCLOUD_MAX_TIME: 3600 # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-max-execution-time-for-nextcloud
|
||||
# NEXTCLOUD_MEMORY_LIMIT: 512M # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-php-memory-limit-for-nextcloud
|
||||
|
||||
Reference in New Issue
Block a user