2023-05-30 03:26:46 +00:00
|
|
|
# WARNING: This is a CI docker-compose file used for building and testing of the entire app, it should not be used for production.
|
|
|
|
services:
|
|
|
|
|
|
|
|
fullstack:
|
|
|
|
environment:
|
|
|
|
NPM_DB_DRIVER: 'postgres'
|
|
|
|
NPM_DB_HOST: 'db-postgres'
|
|
|
|
NPM_DB_PORT: '5432'
|
|
|
|
NPM_DB_USERNAME: 'npm'
|
|
|
|
NPM_DB_PASSWORD: 'npmpass'
|
|
|
|
NPM_DB_NAME: 'npm'
|
|
|
|
NPM_DB_SSLMODE: 'disable'
|
2023-05-30 04:15:33 +00:00
|
|
|
depends_on:
|
|
|
|
- db-postgres
|
2023-05-30 03:26:46 +00:00
|
|
|
|
|
|
|
db-postgres:
|
|
|
|
image: postgres:15
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: 'npm'
|
|
|
|
POSTGRES_PASSWORD: 'npmpass'
|
|
|
|
POSTGRES_DB: 'npm'
|
|
|
|
volumes:
|
|
|
|
- psql_vol:/var/lib/postgresql/data
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
psql_vol:
|