Stop tracking Guest contents

This commit is contained in:
Admin
2026-07-11 17:18:55 +00:00
parent 03e5f3452b
commit 59270c12e3
11 changed files with 2 additions and 514 deletions
@@ -1,42 +0,0 @@
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
#####