Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Debug docker networking
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentluce committed Aug 27, 2024
1 parent baa159e commit ff398cf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci_wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
- name: Start kontrol service and Postgres
run: |
cat /etc/docker/daemon.json
docker version
docker compose -f docker-compose.yml up -d
- name: Install CLI
Expand Down
9 changes: 7 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
networks:
cont:
driver: bridge
enable_ipv6: false

services:
kontrol-service:
image: kontrol-service:latest-amd64
Expand All @@ -10,7 +15,7 @@ services:
- DB_PASSWORD=kurtosis
- DEV_MODE=true
ports:
- 'localhost:8080:8080'
- '8080:8080'
depends_on:
- postgres
postgres:
Expand All @@ -21,7 +26,7 @@ services:
- POSTGRES_PASSWORD=kurtosis
- POSTGRES_DB=kardinal
ports:
- 'localhost:5432:5432'
- '5432:5432'
volumes:
- postgres:/var/lib/postgresql/data
volumes:
Expand Down

0 comments on commit ff398cf

Please sign in to comment.