All checks were successful
Build and Push Docker Image on Tag / Build and Push Docker Image (push) Successful in 2h1m18s
15 lines
303 B
YAML
15 lines
303 B
YAML
services:
|
|
postgres:
|
|
image: postgres:17-alpine
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: dev
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: swisssignchallenge
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data: |