From 01aba56c193bc181a66c1e2b4be207784c3b95fd Mon Sep 17 00:00:00 2001 From: SlayerOrnstein <6075693+SlayerOrnstein@users.noreply.github.com> Date: Mon, 13 May 2024 15:27:04 -0400 Subject: [PATCH] fix: tweaked compose file to build image from source --- docker-compose.example.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 5e61dcf04..40012c54c 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -1,15 +1,15 @@ services: warframestatus: - # Or . if you wanna build the image from source - image: ghcr.io/WFCD/warframestatus:latest - environment: - - TWITTER_KEY=value - - TWITTER_SECRET=value - - TWITTER_BEARER_TOKEN=value - - WFINFO_FILTERED_ITEMS=value - - WFINFO_PRICES=value - - SENTRY_DSN=value - - BUILD=value - - LOG_LEVEL=value + image: warframestatus:latest + build: . # you can remove this if you plan to use your own image + # environment: + # - TWITTER_KEY= + # - TWITTER_SECRET= + # - TWITTER_BEARER_TOKEN= + # - WFINFO_FILTERED_ITEMS= + # - WFINFO_PRICES= + # - SENTRY_DSN= + # - BUILD= + # - LOG_LEVEL= expose: - - host:3001 \ No newline at end of file + - 8080:3001 # Host port can be whatever you need it to be \ No newline at end of file