Skip to content

Update docker.ts

Update docker.ts #409

Workflow file for this run

name: CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
name: Run e2e tests
runs-on: ubuntu-latest
env:
NODE_ENV: test
services:
redis:
image: redis/redis-stack-server:latest
ports:
- 16379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
mariadb:
image: mariadb:10.11.5
ports:
- 13306:3306
env:
MARIADB_DATABASE: dashboard-globalping-test
MARIADB_USER: directus
MARIADB_PASSWORD: password
MARIADB_RANDOM_ROOT_PASSWORD: 1
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: fscarmen/[email protected]
- name: Enable IPv6 for Docker containers
run: |
sudo cat /etc/docker/daemon.json > json
jq '. + { "ipv6": true, "fixed-cidr-v6": "2001:db8:1::/64" }' <<< "$json" > daemon.json
sudo mv daemon.json /etc/docker/
sudo systemctl restart docker
docker restart $(docker ps -aq)
- name: Build
run: |
npm ci
npm run build
- name: Test E2E
run: |
npm run test:e2e