nginx-proxy-manager/docker/docker-compose.ci.yml

85 lines
2.0 KiB
YAML
Raw Normal View History

# WARNING: This is a CI docker-compose file used for building and testing of the entire app, it should not be used for production.
version: '3.8'
services:
fullstack-mysql:
2023-03-21 06:56:45 +00:00
image: "${IMAGE}:ci-${BUILD_NUMBER}"
environment:
2023-03-21 06:56:45 +00:00
DEBUG: 'true'
LE_STAGING: 'true'
FORCE_COLOR: 1
2023-03-21 06:56:45 +00:00
DB_MYSQL_HOST: 'db'
DB_MYSQL_PORT: '3306'
DB_MYSQL_USER: 'npm'
DB_MYSQL_PASSWORD: 'npm'
DB_MYSQL_NAME: 'npm'
volumes:
- npm_data:/data
expose:
- 81
- 80
- 443
depends_on:
- db
2021-08-22 23:28:59 +00:00
healthcheck:
test: ["CMD", "/bin/check-health"]
interval: 10s
timeout: 3s
fullstack-sqlite:
2023-03-21 06:56:45 +00:00
image: "${IMAGE}:ci-${BUILD_NUMBER}"
environment:
2023-03-21 06:56:45 +00:00
DEBUG: 'true'
LE_STAGING: 'true'
FORCE_COLOR: 1
2023-03-21 06:56:45 +00:00
DB_SQLITE_FILE: '/data/mydb.sqlite'
PUID: 1000
PGID: 1000
volumes:
- npm_data:/data
expose:
- 81
- 80
- 443
2021-08-22 23:28:59 +00:00
healthcheck:
test: ["CMD", "/bin/check-health"]
interval: 10s
timeout: 3s
db:
image: jc21/mariadb-aria
environment:
2023-03-21 06:56:45 +00:00
MYSQL_ROOT_PASSWORD: 'npm'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'npm'
MYSQL_PASSWORD: 'npm'
volumes:
- db_data:/var/lib/mysql
2020-08-06 01:26:37 +00:00
cypress-mysql:
2023-03-21 06:56:45 +00:00
image: "${IMAGE}-cypress:ci-${BUILD_NUMBER}"
build:
context: ../test/
dockerfile: cypress/Dockerfile
environment:
2023-03-21 06:56:45 +00:00
CYPRESS_baseUrl: 'http://fullstack-mysql:81'
2020-08-06 01:26:37 +00:00
volumes:
- cypress-logs:/results
command: cypress run --browser chrome --config-file=${CYPRESS_CONFIG:-cypress/config/ci.json}
cypress-sqlite:
2023-03-21 06:56:45 +00:00
image: "${IMAGE}-cypress:ci-${BUILD_NUMBER}"
2020-08-06 01:26:37 +00:00
build:
context: ../test/
dockerfile: cypress/Dockerfile
2020-08-06 01:26:37 +00:00
environment:
CYPRESS_baseUrl: "http://fullstack-sqlite:81"
volumes:
- cypress-logs:/results
command: cypress run --browser chrome --config-file=${CYPRESS_CONFIG:-cypress/config/ci.json}
volumes:
cypress-logs:
npm_data:
db_data: