We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d79c5a commit 0478c4bCopy full SHA for 0478c4b
lauth/.rubymine/docker-compose.yml
@@ -1,31 +1,31 @@
1
---
2
services:
3
- web:
4
- image: ghcr.io/mlibrary/lauth/lauth:58fcf5d6de7066cda5cc5c653b2f626c9bd24a6f
5
- hostname: web.lauth.local
+ app:
+ image: ghcr.io/mlibrary/lauth/lauth:latest
+ hostname: app.lauth.local
6
networks:
7
default:
8
- aliases: ["web"]
+ aliases: ["app"]
9
ports:
10
- - "2300:3000"
+ - "2300:2300"
11
depends_on:
12
mariadb:
13
condition: "service_healthy"
14
15
- app:
+ dev:
16
build:
17
context: ../
18
dockerfile: ./lauth/Dockerfile
19
target: development
20
args:
21
UID: ${UID:-1000}
22
GID: ${GID:-1000}
23
- hostname: app.lauth.local
+ hostname: dev.lauth.local
24
25
26
aliases: ["app"]
27
28
- - "2300:2300"
+ - "2300:3000"
29
- "1234:1234" # RubyMine
30
31
0 commit comments