Renamed all docker-compose files to podman-compose

Just because I can
This commit is contained in:
Marko Korhonen 2023-04-08 16:32:14 +03:00
parent d546922e1e
commit a55c7b1f99
19 changed files with 18 additions and 2 deletions

View file

@ -0,0 +1,18 @@
[services]
[services.postgres]
container_name = "postgres"
image = "postgres:15"
environment = ["TZ=Europe/Helsinki", "POSTGRES_PASSWORD=12345"]
ports = ["5432:5432"]
networks = ["postgres"]
volumes = [
"~/data/postgres:/var/lib/postgresql/data",
"/etc/localtime:/etc/localtime:ro",
]
restart = "unless-stopped"
[networks]
[networks.postgres]
external = true