Skip to content

Commit

Permalink
don't use env file, it messes up users
Browse files Browse the repository at this point in the history
  • Loading branch information
ajslater committed Jan 26, 2022
1 parent f05ded2 commit c41debe
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
services:
codex-base:
env_file:
- .env
build:
context: .
dockerfile: base.Dockerfile
Expand All @@ -10,8 +8,6 @@ services:
CODEX_BASE_VERSION: "$CODEX_BASE_VERSION"
image: docker.io/ajslater/codex-base
codex-builder-base:
env_file:
- .env
build:
context: .
dockerfile: builder-base.Dockerfile
Expand All @@ -21,17 +17,12 @@ services:
HOST_CACHE_DIR: $HOST_CACHE_DIR
image: docker.io/ajslater/codex-builder-base
codex-dist-builder: &codex-dist-builder
env_file:
- .env
build:
context: .
dockerfile: dist-builder.Dockerfile
args:
CODEX_BUILDER_BASE_VERSION: "$CODEX_BUILDER_BASE_VERSION"
CODEX_DIST_BUILDER_VERSION: "$CODEX_DIST_BUILDER_VERSION"
environment:
- PUID=
- PGID=
image: docker.io/ajslater/codex-dist-builder:$CODEX_DIST_BUILDER_VERSION
container_name: codex-dist-builder
codex-save-cache:
Expand Down Expand Up @@ -76,8 +67,6 @@ services:
- ./dist/:/app/dist/
command: ./build-dist.sh
codex-builder-final: &codex-builder-final
env_file:
- .env
build:
context: .
dockerfile: builder-final.Dockerfile
Expand All @@ -94,8 +83,6 @@ services:
- ./cache/packages:/app/cache/packages
command: ./python_cacher/save_py_caches.py pip
codex:
env_file:
- .env
build:
context: .
args:
Expand Down

0 comments on commit c41debe

Please sign in to comment.