mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-08-23 13:02:23 +00:00
28 lines
451 B
YAML
28 lines
451 B
YAML
#
|
|
|
|
#
|
|
|
|
name: postgis
|
|
|
|
services:
|
|
postgis:
|
|
image: postgis/postgis:17-3.5-alpine
|
|
container_name: postgis
|
|
volumes:
|
|
- ./data/:/var/lib/postgresql/data
|
|
- ./shared/:/var/shared
|
|
environment:
|
|
POSTGRES_USER: test
|
|
POSTGRES_PASSWORD: changeme
|
|
TZ: "Europe/Vienna"
|
|
PGTZ: "Europe/Vienna"
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
ports:
|
|
- 15432:5432
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|