Last active
November 11, 2022 19:40
-
-
Save igorvieira/7b96ec3a9737dcc15ab69a997a2fa078 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postgres: | |
image: postgres:14.6-alpine | |
ports: | |
- '5432:5432' | |
environment: | |
POSTGRES_USER: 'user' | |
POSTGRES_PASSWORD: 'password' | |
POSTGRES_DB: 'database' | |
volumes: | |
- ./init:/docker-entrypoint-initdb.d/ | |
# docker-compose up -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment