Start working on docker compose.

This commit is contained in:
Paulo Gustavo Veiga
2024-02-03 20:25:15 -08:00
parent c976046fca
commit f046bcaebc
5 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
services:
database:
image: 'postgres:15.2'
ports:
- '5432'
environment:
- 'POSTGRES_USER=myuser'
- 'POSTGRES_DB=mydatabase'
- 'POSTGRES_PASSWORD=secret'