compiling state [wip]

This commit is contained in:
2022-11-23 18:19:17 +01:00
parent f105b2ef2e
commit 3256c7f5fe
16 changed files with 176 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
version: "3.7"
services:
postgres:
container_name: 'to-do-postgres'
image: 'postgres:latest'
restart: always
ports:
- '5432:5432'
environment:
- 'POSTGRES_USER=admin'
- 'POSTGRES_DB=to_do'
- 'POSTGRES_PASSWORD=secret+123'