Skip to content

Commit

Permalink
Update docker-compose.yml (#102)
Browse files Browse the repository at this point in the history
Fix docker compose file:
1. Loads *.env* file
2. Fixes permission problems for the container to access files (in rootless containers like Podman)
  • Loading branch information
krillin666 authored Jan 7, 2023
1 parent 178cac0 commit 98057ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ version: '3'
services:
fire_seq_search_server:
image: ghcr.io/endle/fireseqsearch:latest
env_file: .env
environment:
- NOTEBOOK_DIR
restart: always
ports:
- "127.0.0.1:3030:3030"
volumes:
- ${NOTEBOOK_DIR}:${NOTEBOOK_DIR}
- ${NOTEBOOK_DIR}:${NOTEBOOK_DIR}:Z

0 comments on commit 98057ad

Please sign in to comment.