Compare commits

..

10 Commits

Author SHA1 Message Date
7d98e67def Update nextcloudaio/docker-compose.yml
Convert for running on virtual ZETA
2026-04-20 13:54:21 +01:00
f4f2b4d2b1 Update gitea/docker-compose.yml
test verson of gitea for virtual ZETA
2026-04-20 13:45:13 +01:00
2232847c8a Add gitea/docker-compose.yml 2026-04-20 13:42:52 +01:00
eddf2b7402 Update minecraft/docker-compose.yml 2026-04-03 21:42:51 +01:00
d2742d9198 Update minecraft/docker-compose.yml
More environment variables
2026-04-03 14:54:53 +01:00
7c4453a75d Update minecraft/docker-compose.yml
Increase memory
2026-04-03 14:43:46 +01:00
7b3a56cbc8 Update minecraft/docker-compose.yml
Additional envcironment variables suggested by AI on GOOGLE
2026-04-03 14:29:43 +01:00
9ca3cfcd8a Update minecraft/docker-compose.yml
Add in two further environment variables to see if I can connect
2026-04-03 14:18:42 +01:00
74856495d9 Update minecraft/docker-compose.yml
Change service name to "mc"
2026-04-03 14:08:28 +01:00
f20c2f002c Add minecraft/docker-compose.yml 2026-04-03 13:57:24 +01:00
3 changed files with 57 additions and 2 deletions

35
gitea/docker-compose.yml Normal file
View 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

View 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

View File

@@ -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