docker-compose.yml fixed. etc... - docker-compose image label fixed :main before :1 - Dockerfile add env to TZ=UTC

docker-compose.yml fixed. etc... - docker-compose image label fixed :main before :1 - Dockerfile add env to TZ=UTC

dalbodeule committed Nov 20, 2025 at 17:11 UTC dfe19a75fc06782e630e242f2a247c9042c2cd02
3 files changed +96 -2
.gitignore
+94 -1
@@ -39,4 +39,97 @@ profile.cov
39 docker-compose.override.yml
40 docker-compose.override.yaml
41
42 -*.log
\ No newline at end of file
42 +*.log
43 +
44 +# Created by https://www.toptal.com/developers/gitignore/api/goland+all
45 +# Edit at https://www.toptal.com/developers/gitignore?templates=goland+all
46 +
47 +### GoLand+all ###
48 +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
49 +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
50 +
51 +# User-specific stuff
52 +.idea/**/workspace.xml
53 +.idea/**/tasks.xml
54 +.idea/**/usage.statistics.xml
55 +.idea/**/dictionaries
56 +.idea/**/shelf
57 +
58 +# AWS User-specific
59 +.idea/**/aws.xml
60 +
61 +# Generated files
62 +.idea/**/contentModel.xml
63 +
64 +# Sensitive or high-churn files
65 +.idea/**/dataSources/
66 +.idea/**/dataSources.ids
67 +.idea/**/dataSources.local.xml
68 +.idea/**/sqlDataSources.xml
69 +.idea/**/dynamic.xml
70 +.idea/**/uiDesigner.xml
71 +.idea/**/dbnavigator.xml
72 +
73 +# Gradle
74 +.idea/**/gradle.xml
75 +.idea/**/libraries
76 +
77 +# Gradle and Maven with auto-import
78 +# When using Gradle or Maven with auto-import, you should exclude module files,
79 +# since they will be recreated, and may cause churn. Uncomment if using
80 +# auto-import.
81 +# .idea/artifacts
82 +# .idea/compiler.xml
83 +# .idea/jarRepositories.xml
84 +# .idea/modules.xml
85 +# .idea/*.iml
86 +# .idea/modules
87 +# *.iml
88 +# *.ipr
89 +
90 +# CMake
91 +cmake-build-*/
92 +
93 +# Mongo Explorer plugin
94 +.idea/**/mongoSettings.xml
95 +
96 +# File-based project format
97 +*.iws
98 +
99 +# IntelliJ
100 +out/
101 +
102 +# mpeltonen/sbt-idea plugin
103 +.idea_modules/
104 +
105 +# JIRA plugin
106 +atlassian-ide-plugin.xml
107 +
108 +# Cursive Clojure plugin
109 +.idea/replstate.xml
110 +
111 +# SonarLint plugin
112 +.idea/sonarlint/
113 +
114 +# Crashlytics plugin (for Android Studio and IntelliJ)
115 +com_crashlytics_export_strings.xml
116 +crashlytics.properties
117 +crashlytics-build.properties
118 +fabric.properties
119 +
120 +# Editor-based Rest Client
121 +.idea/httpRequests
122 +
123 +# Android studio 3.1+ serialized cache file
124 +.idea/caches/build_file_checksums.ser
125 +
126 +### GoLand+all Patch ###
127 +# Ignore everything but code style settings and run configurations
128 +# that are supposed to be shared within teams.
129 +
130 +.idea/*
131 +
132 +!.idea/codeStyles
133 +!.idea/runConfigurations
134 +
135 +# End of https://www.toptal.com/developers/gitignore/api/goland+all
\ No newline at end of file
Dockerfile
+1
@@ -29,6 +29,7 @@ ENV PORTAL_URL=http://localhost:4017
29 ENV PORTAL_APP_URL=http://*.localhost:4017
30 ENV BOOTSTRAP_URIS=ws://localhost:4017/relay
31 ENV NOINDEX=false
32 +ENV TZ=UTC
33
34 EXPOSE 4017
35 ENTRYPOINT ["/usr/bin/relay-server"]
docker-compose.yml
+1 -1
@@ -1,6 +1,6 @@
1 services:
2 portal:
3 - image: ghcr.io/gosuda/portal:1
3 + image: ghcr.io/gosuda/portal:main
4 pull_policy: always
5 build:
6 context: .