- Switch to use golang seeder - Add CA-integrated base image - Separate branding and theme data - Fix client-cert-auth by appending to database.NAME - Only retry once and let container restart
11 lines
213 B
Bash
Executable File
11 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
|
|
podman create \
|
|
--replace \
|
|
--read-only \
|
|
--network=host \
|
|
--name postgres \
|
|
-v 'postgres_data:/var/lib/postgres/' \
|
|
-v '/etc/resolv.conf:/etc/resolv.conf:ro' \
|
|
redxen.eu/daemons/postgres:latest
|