26 lines
462 B
Text
26 lines
462 B
Text
[Unit]
|
|
Description=Postgres for Blinko
|
|
Wants=blinko.service
|
|
|
|
[Service]
|
|
Restart=on-failure
|
|
TimeoutStartSec=900
|
|
|
|
[Install]
|
|
WantedBy=default.target
|
|
|
|
[Container]
|
|
Image=docker.io/postgres
|
|
ContainerName=blinko-db
|
|
|
|
Network=blinko.network
|
|
HostName=blinko-db
|
|
PublishPort=5435:5432
|
|
|
|
Volume=blinko-db:/var/lib/postgresql/data
|
|
|
|
Environment=POSTGRES_DB=postgres
|
|
Environment=POSTGRES_USER=postgres
|
|
Environment=TZ=Etc/UTC
|
|
|
|
Secret=blinko-db-pw,type=env,target=POSTGRES_PASSWORD
|