Skip to content

Commit

Permalink
Comment out file path envs
Browse files Browse the repository at this point in the history
  • Loading branch information
ozencb committed Nov 12, 2024
1 parent 0bc73d6 commit b825ed3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
services:
couchtube:
image: ghcr.io/ozencb/couchtube:latest
build: .
container_name: couchtube_app
ports:
- "8363:8363"
environment:
- PORT=8363
- DATABASE_FILE_PATH=/app/data/couchtube.db
- JSON_FILE_PATH=/app/data/videos.json
#- DATABASE_FILE_PATH=/app/data/couchtube.db
#- JSON_FILE_PATH=/app/data/videos.json
- READONLY_MODE=false
volumes:
- ./videos.json:/app/data/videos.json:ro
- couchtube_db:/app/data
#volumes:
# - ./videos.json:/app/data/videos.json:ro
# - couchtube_db:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8363"]
Expand Down

0 comments on commit b825ed3

Please sign in to comment.