Skip to content

Commit

Permalink
add container names
Browse files Browse the repository at this point in the history
  • Loading branch information
BBesrour committed Aug 11, 2024
1 parent 30b51ae commit 3fc14b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ http {


upstream telemetry {
server telemetry:8080;
server artemis-telemetry:8080;
}

include /etc/nginx/conf.d/*.conf;
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: '3.8'
services:
nginx:
container_name: nginx
image: nginx:1.26.0-alpine-slim
ports:
- '80:80'
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
services:
telemetry:
container_name: artemis-telemetry
image: ls1tum/artemis-telemetry:latest
build:
context: .
Expand All @@ -20,6 +21,7 @@ services:
restart: always

mysql:
container_name: mysql
image: mysql:8.4.0
volumes:
- artemis-telemetry-mysql-data:/var/lib/mysql
Expand Down

0 comments on commit 3fc14b2

Please sign in to comment.