This repository has been archived on 2023-07-04. You can view files and clone it, but cannot push or open issues/pull-requests.
gateway-old/docker-compose.yml

19 lines
341 B
YAML

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