Issues with docker compose file? #53
Unanswered
thebigjoe1
asked this question in
Q&A
Replies: 1 comment 7 replies
-
|
try to run
|
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I just deleted my container/volume/network and host files to start fresh. Now i always get "internal server error" when starting. Cna someone review my docker compose file and tell me what it is im doing wrong? Im trying hard to mimic the example that was provided. See below:
docker-compose.yml
services:
discount-bandit:
image: cybrarist/discount-bandit:latest
container_name: discount-bandit
ports:
- 8100:80
environment:
DB_CONNECTION: sqlite
GOTIFY_BASE_URL: "${GOTIFY_BASE_URL}"
GOTIFY_TOKEN: "${GOTIFY_TOKEN}"
DEFAULT_USER: "test"
DEFAULT_EMAIL: "[email protected]"
DEFAULT_PASSWORD: "thisismypassword"
APP_TIMEZONE: America/New_York
RSS_FEED: 1
TOP_NAVIGATION: 0
DISABLE_TOP_BAR: 0
BREADCRUMBS: 1
SPA: 1
#DISABLE_AUTH: 0
THEME_COLOR: Stone
APP_URL: "http://10.0.1.3:8100"
volumes:
- /opt/docker-apps/discount-bandit/database/database.sqlite:/app/database/database.sqlite
- /opt/docker-apps/discount-bandit/.env:/app/.env
- /opt/docker-apps/discount-bandit/logs:/logs
networks:
- discount-bandit
networks:
discount-bandit:
driver: bridge
Beta Was this translation helpful? Give feedback.
All reactions