https://github.com/nikitavoloboev/orbstack-test
https://github.com/nikitavoloboev/orbstack-test
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikitavoloboev/orbstack-test
- Owner: nikitavoloboev
- Created: 2024-12-30T21:52:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-30T21:56:05.000Z (about 1 year ago)
- Last Synced: 2025-07-09T13:59:40.472Z (6 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## build container
```
docker build -t postgres .
```
## run container
```
docker run -d \
--name postgres \
-p 5432:5432 \
postgres
```