| version: '3.8' | |
| services: | |
| postgres: | |
| image: postgres:15-alpine | |
| environment: | |
| POSTGRES_USER: testuser | |
| POSTGRES_PASSWORD: testpass | |
| POSTGRES_DB: testdb | |
| ports: | |
| - "5432:5432" | |
| tmpfs: /var/lib/postgresql/data | |
| version: '3.8' | |
| services: | |
| postgres: | |
| image: postgres:15-alpine | |
| environment: | |
| POSTGRES_USER: testuser | |
| POSTGRES_PASSWORD: testpass | |
| POSTGRES_DB: testdb | |
| ports: | |
| - "5432:5432" | |
| tmpfs: /var/lib/postgresql/data | |