This repository has been archived on 2023-07-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
blog/docker-compose.yml
2021-11-23 17:49:31 +01:00

18 lines
346 B
YAML

# I just use this compose file to easily start up test databases
version: '3'
services:
db-blog:
image: 'postgres:14-alpine'
restart: 'always'
environment:
- 'POSTGRES_USER=rb'
- 'POSTGRES_PASSWORD=rb'
ports:
- '5433:5432'
# volumes:
# - 'db-data:/var/lib/postgresql/data'
# volumes:
# db-data: