Files
databasus/docker-compose.yml.example
2025-07-21 19:36:42 +03:00

19 lines
475 B
Plaintext

version: "3"
# Do not use this file in production or VPS. This
# file is indended for local development only. To
# run on your machine - read README.md
services:
# For local development only to test build. Do
# not use in production or VPS
postgresus-local:
build:
context: .
dockerfile: Dockerfile
ports:
- "4005:4005"
volumes:
- ./postgresus-data:/postgresus-data
container_name: postgresus-local
restart: unless-stopped