Initial import

This commit is contained in:
Admin
2026-07-11 17:08:37 +00:00
commit 03e5f3452b
303 changed files with 43365 additions and 0 deletions
@@ -0,0 +1,62 @@
name: pflab-git
########## ===== NETWORKS ===== ##########
networks:
pflab_proxy:
name: pflab_proxy
pflab_backend:
name: pflab_backend
#####
########## ===== VOLUMES ===== ##########
volumes:
gitea_data:
name: pflab_gitea
driver: local
#####
########## ===== SERVICES ===== ##########
services:
##### == GITEA == #####
pflab-gitea:
image: docker.gitea.com/gitea:latest
container_name: pflab-gitea
restart: unless-stopped
env_file: [.secrets/.env]
environment:
USER_UID: "1000"
USER_GID: "1000"
GITEA__database__DB_TYPE: postgres
GITEA__database__HOST: pflab-postgres:5432
GITEA__database__NAME: gitea
GITEA__server__SSH_PORT: "2223"
GITEA__server__SSH_LISTEN_PORT: "22"
GITEA__server__HTTP_PORT: "3000"
GITEA__mailer__ENABLED: "false"
GITEA__mailer__PROTOCOL: "smtp"
ports:
- "2223:22"
volumes:
- gitea_data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- pflab_proxy
- pflab_backend
#####
@@ -0,0 +1,42 @@
name: pflab-postgres
########## ===== NETWORKS ===== ##########
networks:
pflab_backend:
name: pflab_backend
#####
########## ===== VOLUMES ===== ##########
volumes:
postgres_data:
name: pflab_postgres
driver: local
#####
########## ===== SERVICES ===== ##########
services:
pflab-postgres:
image: postgres:17-alpine
container_name: pflab-postgres
restart: unless-stopped
env_file: [.secrets/.env]
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
pflab_backend:
aliases:
- postgres
#####