Skip to content

Commit e34be37

Browse files
committed
TECH Switch to the latest Ubuntu and Docker Compose to overcome issues with Plesk container start
1 parent f041331 commit e34be37

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on: [push]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88
steps:
99
- uses: actions/checkout@v4
10-
- run: docker-compose run tests
10+
- run: docker compose run tests
1111
- uses: codecov/codecov-action@v4
1212
with:
1313
token: ${{ secrets.CODECOV_TOKEN }}

Diff for: docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 1999-2024. WebPros International GmbH.
2-
version: '2'
2+
version: '3'
33
services:
44
plesk:
55
image: plesk/plesk:latest
@@ -12,7 +12,8 @@ services:
1212
- /run
1313
- /run/lock
1414
volumes:
15-
- /sys/fs/cgroup:/sys/fs/cgroup:ro
15+
- /sys/fs/cgroup:/sys/fs/cgroup
16+
cgroup: host
1617
tests:
1718
build: .
1819
environment:

0 commit comments

Comments
 (0)