backend for xcvr appview
at main 328 B view raw
1services: 2 db: 3 image: postgres:15 4 restart: unless-stopped 5 environment: 6 POSTGRES_USER: ${POSTGRES_USER} 7 POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} 8 POSTGRES_DB: ${POSTGRES_DB} 9 ports: 10 - "127.0.0.1:${POSTGRES_PORT}:5432" 11 volumes: 12 - dbdata:/var/lib/postgresql/data 13 14volumes: 15 dbdata: