micro/compose.yml

16 lines
455 B
YAML
Raw Normal View History

2021-04-02 04:57:37 +00:00
# THIS FILE IS FOR DEVELOPMENT ONLY.
# If you want complete examples on how to host micro, see the /examples directory.
2021-10-02 22:17:05 +00:00
# Persistence is not setup for this postgres instance.
2020-10-01 16:36:52 +00:00
version: "3"
services:
postgres:
image: postgres:12-alpine
container_name: micro_postgres
restart: unless-stopped
ports:
- 127.0.0.1:5433:5432
environment:
- POSTGRES_USER=micro
- POSTGRES_PASSWORD=youshallnotpass
- POSTGRES_DB=micro