Skip to content

Commit

Permalink
Added e2e tests GH action, with docker compose build - debugging action
Browse files Browse the repository at this point in the history
  • Loading branch information
dividor committed Jul 1, 2024
1 parent 043ca0b commit fda09de
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docker-compose-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ services:
POSTGRES_DB: ${POSTGRES_DATA_DB}
POSTGRES_USER: ${POSTGRES_DATA_USER}
POSTGRES_PASSWORD: ${POSTGRES_DATA_PASSWORD}
POSTGRES_PORT: ${POSTGRES_DATA_PORT}
restart: always
ports:
- 5433:5432
#volumes:
# - ./data/datadb:/var/lib/postgresql/data
env_file:
- .env
#env_file:
# - .env

recipedb:
platform: linux/amd64
Expand All @@ -43,14 +44,15 @@ services:
POSTGRES_DB: ${POSTGRES_RECIPE_DB}
POSTGRES_USER: ${POSTGRES_RECIPE_USER}
POSTGRES_PASSWORD: ${POSTGRES_RECIPE_PASSWORD}
POSTGRES_PORT: ${POSTGRES_RECIPE_PORT}
restart: always
ports:
- 5435:5432
volumes:
- ./db/recipedb:/docker-entrypoint-initdb.d
- ./data/recipesdb:/var/lib/postgresql/data
env_file:
- .env
#env_file:
# - .env

server:
platform: linux/amd64
Expand Down

0 comments on commit fda09de

Please sign in to comment.