Use .gitea

This commit is contained in:
Thomas E Lackey 2023-03-27 15:50:10 -05:00
parent 13001382c1
commit cee67f4fad
5 changed files with 9 additions and 9 deletions

View File

@ -56,7 +56,7 @@ jobs:
- name: Run docker compose
run: |
docker compose up -d
docker-compose up -d
- name: Give the migration a few seconds
run: sleep 30;
@ -111,7 +111,7 @@ jobs:
- name: Run docker compose
run: |
docker compose \
docker-compose \
-f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-go-ethereum.yml" \
-f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-db-sharding.yml" \
--env-file $GITHUB_WORKSPACE/config.sh \

View File

@ -55,7 +55,7 @@ jobs:
- name: Run docker compose
run: |
docker compose up -d
docker-compose up -d
- name: Give the migration a few seconds
run: sleep 30;

View File

@ -25,8 +25,8 @@ services:
USE_GENESIS: "true"
EXTRA_START_ARGS: ${extra_args}
ports:
- "8545:8545"
- "8546:8546"
- "127.0.0.1:8545:8545"
- "127.0.0.1:8546:8546"
migrations:
restart: on-failure
@ -49,6 +49,6 @@ services:
POSTGRES_DB: "vulcanize_testing"
POSTGRES_PASSWORD: "password"
ports:
- "8077:5432"
- "127.0.0.1:8077:5432"
volumes:
- ./statediff/indexer/database/file:/file_indexer

View File

@ -22,6 +22,6 @@ services:
POSTGRES_DB: "vulcanize_testing"
POSTGRES_PASSWORD: "password"
ports:
- "8077:5432"
- "127.0.0.1:8077:5432"
volumes:
- ./statediff/indexer/database/file:/file_indexer

View File

@ -47,7 +47,7 @@ func ResolveDriverType(str string) (DriverType, error) {
// DefaultConfig are default parameters for connecting to a Postgres sql
var DefaultConfig = Config{
Hostname: "172.17.0.1",
Hostname: "localhost",
Port: 8077,
DatabaseName: "vulcanize_testing",
Username: "vdbm",