Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Marina Kosolap
assistant_configs
Commits
d6701127
Commit
d6701127
authored
10 months ago
by
Marina Kosolap
Browse files
Options
Downloads
Patches
Plain Diff
Add docker-compose.yml
parent
fead6d05
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker-compose.yml
+80
-0
docker-compose.yml
with
80 additions
and
0 deletions
docker-compose.yml
0 → 100644
+
80
−
0
View file @
d6701127
version
:
'
3.8'
services
:
nginx
:
image
:
nginx:alpine
container_name
:
assistant_nginx
restart
:
always
ports
:
-
"
80:80"
volumes
:
-
./nginx.conf:/etc/nginx/nginx.conf
networks
:
-
my-network
grafana
:
image
:
grafana/grafana:11.1.0
container_name
:
assistant_grafana
restart
:
always
ports
:
-
"
3000:3000"
volumes
:
-
/var/assistant/grafana:/var/lib/grafana
networks
:
-
my-network
depends_on
:
-
db
db
:
container_name
:
assistant_postgres
image
:
postgres:bookworm
restart
:
always
environment
:
POSTGRES_USER
:
--
POSTGRES_PASSWORD
:
--
POSTGRES_DB
:
--
ports
:
-
"
5432:5432"
volumes
:
-
/var/assistant/postgresql:/var/lib/postgresql/data
networks
:
-
my-network
server
:
image
:
andrei1121212/sberlab_assistant:manifest-amd64
container_name
:
assistant_server
restart
:
always
ports
:
-
"
8080:8080"
networks
:
-
my-network
environment
:
TIMEZONE
:
Asia/Novosibirsk
SCHEDULE_TIME
:
23:55
PROCESSING_POCKET_SIZE
:
100
GITLAB_URL
:
https://gitlab.sberlab.nsu.ru
GITLAB_TOKEN
:
--
PLANE_URL
:
https://tracker.sberlab.nsu.ru
KIMAI_URL
:
https://kimai.sberlab.nsu.ru
KIMAI_TOKEN
:
--
BOOKSTACK_URL
:
https://bookstack.sberlab.nsu.ru
BOOKSTACK_TOKEN
:
--
BOOKSTACK_SECRET_TOKEN
:
--
POSTGRES_USER
:
--
POSTGRES_PASSWORD
:
--
POSTGRES_HOST
:
assistant_postgres
POSTGRES_PORT
:
5432
POSTGRES_DB
:
--
RESTAPI_AUTH_KEY
:
--
RESTAPI_HOST
:
0.0.0.0
RESTAPI_PORT
:
8080
# Plane tokens are located in src/plane_tokens.json inside the container.
# It can be changed using nano.
networks
:
my-network
:
driver
:
bridge
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets