Skip to content

Commit

Permalink
dfc-img
Browse files Browse the repository at this point in the history
  • Loading branch information
atalyaalon committed Sep 5, 2023
1 parent 48d91bc commit 6214995
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker-compose-production.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
nginx:
build: nginx_docker
image: ghcr.io/hasadna/anyway/nginx:latest
image: ghcr.io/data-for-change/anyway/nginx:latest
depends_on:
- anyway
ports:
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
anyway:
build: .
image: ghcr.io/hasadna/anyway/anyway:latest
image: ghcr.io/data-for-change/anyway/anyway:latest
container_name: anyway
ports:
- "8080:5000"
Expand Down Expand Up @@ -33,7 +33,7 @@ services:

db:
build: db_docker
image: ghcr.io/hasadna/anyway/db:latest
image: ghcr.io/data-for-change/anyway/db:latest
container_name: db
environment:
- DBRESTORE_AWS_ACCESS_KEY_ID
Expand All @@ -45,15 +45,15 @@ services:
restart: always

anyway-etl:
image: ghcr.io/hasadna/anyway-etl/anyway-etl:latest
image: ghcr.io/data-for-change/anyway-etl/anyway-etl:latest
volumes:
- anyway_etl_data:/var/anyway-etl-data
depends_on:
- db
restart: "no"

anyway-etl-nginx:
image: ghcr.io/hasadna/anyway-etl/anyway-etl-nginx:latest
image: ghcr.io/data-for-change/anyway-etl/anyway-etl-nginx:latest
volumes:
- anyway_etl_data:/var/anyway-etl-data
restart: unless-stopped
Expand All @@ -69,7 +69,7 @@ services:
- "airflow-db:/var/lib/postgresql/data"

airflow-webserver:
image: ghcr.io/hasadna/anyway-etl/anyway-etl-airflow:latest
image: ghcr.io/data-for-change/anyway-etl/anyway-etl-airflow:latest
restart: unless-stopped
environment:
ANYWAY_ETL_AIRFLOW_INITIALIZE: "yes"
Expand All @@ -83,7 +83,7 @@ services:
- airflow-db

airflow-scheduler:
image: ghcr.io/hasadna/anyway-etl/anyway-etl-airflow:latest
image: ghcr.io/data-for-change/anyway-etl/anyway-etl-airflow:latest
restart: unless-stopped
environment:
ANYWAY_ETL_AIRFLOW_ROLE: "scheduler"
Expand Down
2 changes: 1 addition & 1 deletion nginx_docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/hasadna/anyway/anyway:latest AS builder
FROM ghcr.io/data-for-change/anyway/anyway:latest AS builder
RUN flask assets build

FROM nginx:stable
Expand Down

0 comments on commit 6214995

Please sign in to comment.